Hi,
I’m trying to figure out how to change the color scheme of the mobile menu in enfold. I’d like the background to be black but almost transparent, with white font coloring that becomes light blue with hover. I’d also like to change the menu icon color to black on white (like this site when view on mobile device). Is there some quick css code I can use to do this? Any help is greatly appreciated. Also, I’d like to know how to modify the colors if I find the black background doesn’t work. Thanks!!
Hi,
Can you post the link to your website please?
Regards,
Josue
Hey!
Try adding this code to the Quick CSS:
#mobile-advanced {
background: rgba(0, 0, 0, 0.9);
}
#mobile-advanced a{
color: white;
}
#mobile-advanced a:hover, #mobile-advanced a:hover .avia-menu-text{
background: inherit !important;
}
#mobile-advanced a:hover .avia-menu-text{
color: skyBlue;
}
Cheers!
Josue
awesome, thanks!
You are welcome, always glad to help :)
Regards,
Josue