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.
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;
}
}