Tagged: mobile, mobile menu, mobile menu styling
I’m working on a website for a client and I’m stumped :-(
I can’t figure out how to change the tab for the menu on mobile (see screen shot).
Since we have a dark background I set the menu to white, which it appears white on a white background. How do I solve this?
Hi msbllc!
Add this to your custom CSS.
#advanced_menu_toggle { color: black !important; }
Regards,
Elliott
Thanks Elliott! I appreciate it. I was playing around with the various #advanced_menu_toggle options but didn’t try that one.
By the way, is there a way to inspect element for mobile? Or have a reference chart for Enfold’s CSS?
Hey!
Enfold uses a CSS based responsiveness so if your in Firebug or in Google Chrome developer tools you just need to resize the browser down to a smaller width and you’ll see the CSS used.
In the Enfold CSS files look for lines that say..
@media screen and (max-width: 767px) {
}
Anything within those will get applied on mobile screens only.
Regards,
Elliott
Thank you sir! :-)