Help changing font colors in links and page headers

  • Unknown's avatar

    Hello,

    I really enjoy my theme. But, I would like to change the color of the links from white to a different color. I would also like to change the color of my page headers from black to a different color.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, to change the page and post titles to a different color, go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS and edit the color code as desired.

    .entry-title, .entry-title a {
        color: #cc0000;
    }

    On the links, which links are you referring to? If you are referring to the ones in the menu, then you can add the following CSS to change it. The second rule below is the current page item color. Generally it is nice to differentiate that page item from the others to help your visitors will know where they are.

    .primary-navigation .menu-item-has-children a::after, .primary-navigation .page_item_has_children a::after, .secondary-navigation .menu-item-has-children > a::after, .site-navigation a {
        color: #00ff00 !important;
    }
    .site-navigation .current_page_item > a, .site-navigation .current_page_ancestor > a, .site-navigation .current-menu-item > a, .site-navigation .current-menu-ancestor > a {
        color: #fab81e !important;
    }
  • Unknown's avatar

    Thank you so much !!!!!! It worked !

  • Unknown's avatar

    Hooray and you are welcome!

  • The topic ‘Help changing font colors in links and page headers’ is closed to new replies.