Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #28338

    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!

    #137279

    One more…where in the theme options can I change the font color used for the top level menu items? Thanks

    #137280

    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

    #137281

    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;

    }

    #137282

    Hey,

    Remove the code for number, use this:

    .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    Regards,

    Ismael

    #137283

    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!

    #137284

    Hey,

    Use this for the hover state:

    .header_color .main_menu ul:first-child > li a:hover {
    color: red;
    }

    Regards,

    Ismael

    #137285

    Perfect! Thanks Ismael!

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘How to change font colors in portfolio galleries’ is closed to new replies.