How do we change the hover background AND hover text link color for the SUB-links within the dropdown menu ?
Hey,
You can use this on your custom.css or Quick CSS:
Text link color:
#top .header_color .main_menu .menu ul li>a:hover {
color: red;
}
Background hovercolor:
.header_color .main_menu .menu ul li a:hover {
background-color: blue;
}
Regards,
Ismael
Worked great.
Thank you.