Okay
  Public Ticket #2381937
Header Text Color Change
Closed

Comments

  • Chuico started the conversation

    Hi,


    How can I change the header text colors so that it's blue? Please note that I don't want to change the color of all my H1 headers. Thanks!

  •  3,021
    Andrew replied

    Hi Chuico,

    Try the following custom css in Salient > General settings > CSS/Script related:

    #page-header-bg .top-heading span {
        color: blue !important;
    }
    

    Hope this helps.

  • Chuico replied

    Thanks Andrew, but this just changes the header of my homepage. I was looking to change the header text colors for the blog posts except their H1 headers. Here's my site: pesohacks.com

  •  3,021
    Andrew replied

    Hi Chuico,

    Use the following. 

    #single-below-header span {
        color: blue !important;
    }
    .blog-title a {
        color: blue !important;
    }
    

    Kind regards.