Hi. I’m using a small fixed header (which I assume is the default for the Enfold theme). How do I change the bg and hover state and text color of the menu drop-down labels? A close example is what is used natively on the WordPress 3.8 CP. (White text on dark grey; hover state reveals accent color). Unlike WordPress, however, I refer only to the drop-down (sub) labels, not to the main menu labels in the header (which are currently grey text on white). Thanks.
Hi foreigner!
Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed
#top .header_color .main_menu .menu ul li>a:hover {
color: red;
}
.header_color .main_menu .menu ul li a:hover {
background-color: orange;
}
Cheers!
Yigit
Hi Yigit. That’ll do it. Thanks..