I have a green header and menu background with white text, but the text is barely visible, unless hovered or selected. Same for the subheads in the footer. Is this due to opacity?
Hi,
Please add this on your custom.css or Quick CSS
.header_color .main_menu ul:first-child > li > a {
color: white;
}
.header_color .main_menu .menu ul li a {
color: white;
}
Regards,
Ismael
Great thanks! That worked for the menu. Now could you help me do the same for the footer subheads? Also I would like to bump my footer content down, so I guess add padding to the inside top of the footer?
I figured out the footer
#footer {
padding-top: 50px;
but still not the footer subhead color
Also I can’t get the current menu item to be white
Hi,
Footer widget title:
#footer .widgettitle {
color: white;
}
Current Menu item color:
#top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a {
color: white;
}
Regards,
Ismael
great! thank you!