Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Ruthy,

    Here’s some CSS for the color change:

    .menu-toggle,
    .menu-primary,
    .main-navigation.toggle-on .menu-toggle {
        background: #403f3f;
    }
    .menu-toggle:hover {
        background: #403f3f;
    }

    The colors above are the existing colors, so feel free to change them to whatever you like.

    Thread Starter ruthy19

    (@ruthy19)

    Hi

    The codes are great for the mobile site but on the other views the overlay has been lost for the menu bar. Can this be put back?

    Ruth

    Hi Ruth,

    Try replacing the code above with this:

    @media screen and (max-width: 1019px) {
        .menu-toggle, .menu-primary, .main-navigation.toggle-on .menu-toggle {
            background: #403f3f;
        }
        .menu-toggle:hover {
            background: #403f3f;
        }
    }
    Thread Starter ruthy19

    (@ruthy19)

    That’s great thanks

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Mobile menu background colour’ is closed to new replies.