Hi – Please see http://thecaloriemythbook.com/readerresults/ Where in the theme options can I change the color of the excerpt text. Right now it’s light purple and I can’t figure out why or how to change it.
Thanks!
One more…where in the theme options can I change the font color used for the top level menu items? Thanks
Hey,
1.) Please add this on your custom.css or Quick CSS:
.grid-entry-excerpt {
color: gray;
}
2.) Use this for the top level menus:
.header_color .main_menu ul:first-child > li > a, .header_color .main_menu .menu ul li a {
color: white;
}
Regards,
Ismael
Hi Ismael – Thank you. 1 works perfect. 2 changes both the color of the menu items shown in the header bar and in their drop down menus. I’d like to only change the color of the menu items shown in the header bar. Could you assist with that refinement?
Note: I am using the following in my custom CSS per your recommendation in another post, but it seems to be getting overwritten by #2 above.
.header_color .main_menu .menu ul li a {
background: white;
color: black;
}
Hey,
Remove the code for number, use this:
.header_color .main_menu ul:first-child > li > a {
color: white;
}
Regards,
Ismael
Perfect Ismael. Building off of this, how can I now specify the color of hovered over/active menu items in *only* menu items shown in the header bar? Thanks again!
Hey,
Use this for the hover state:
.header_color .main_menu ul:first-child > li a:hover {
color: red;
}
Regards,
Ismael
Perfect! Thanks Ismael!