• Resolved ninaperez

    (@ninaperez)


    I have our menu bar set to the a light green color with white text – just as I want it. But when I view the site on mobile devices, the menu bar goes black with black text! This also happens on a desktop browser of the window isn’t big enough. How can I keep the integrity of my choices across all platforms?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello ninaperez,

    You can achieve this with css. Add below css code into your current active child theme’s style.css file or you can also add it to additional css option in theme customize.


    @media (max-width: 1024px) {
    .mobile-nav, .slicknav_nav {
    background-color: #d9efdb;
    }
    .slicknav_nav li a{
    color: #ffffff !important;
    }
    }

    Hope this will helps you.

    Thanks!

    Thread Starter ninaperez

    (@ninaperez)

    It worked! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Unwanted Menu Bar Color Changes on Mobile’ is closed to new replies.