Hey guys,
I searched through the support forum and couldn’t quite find what I needed. I’m using Enfold’s “Black” theme option.
In my navigation, I need the inactive sub/child pages’ text to be white (currently gray) and the active sub/child pages to be black (currently white).
What would I put into the Quick CSS to make this happen?
Thanks for the help.
Hi Boston182!
Please use this on Quick CSS:
.header_color .main_menu .menu ul li a {
color: white;
}
#top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a {
color: black;
}
Regards,
Ismael
Hey Ismael,
Thanks for the quick reply. However, this only solved half of my issue. I suppose I should have been more clear. I want the active/current subpage to stay white, like all of the others, but I want the text to be black upon hovering over the child/subpage (when highighted in color, I want the text to be black instead of white).
Here is the link to my site, if it helps: http://fmmf.us/home/
Thanks again.
Hi!
Please add following code to Quick CSS
#top .header_color .main_menu .menu ul li>a:hover {
color: black;
}
Best regards,
Yigit
This solves my problems, guys. Thanks a lot for the help!