Hi,
I was wondering how to change the background color and text color of the drop down menus. Could you help me out?
Thanks!
Hi,
You can use this on your custom.css or Quick CSS:
.header_color .main_menu .menu ul li a {
background: red;
color: white;
}
Hover state:
.header_color .main_menu .menu ul li a:hover {
background-color: blue;
}
#top .header_color .main_menu .menu ul li>a:hover {
color: red;
}
Regards,
Ismael