Want to change font color on my header.

  • I need to change the font color on my header to be more readable over my pale header. I’ve looked everywhere and I can’t figure out how to do it. Please help!

    Blog: https://neverceasetogrow.wordpress.com

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

  • Hi neverceasetogrow! You can use the following CSS to change the color of the title “Never Cease To Grow” to a color of your choice:

    .wf-active .site-title a{
        color: black;
    }

    Where is says ‘black’ you can change that to any color by typing the name or using the hex value of a color.

    To change the description “Develop a passion for learning. If you do, you will never cease to grow. – Anthony J. D’Angelo” use the following CSS to do so:

    .wf-active .site-description {
        color: black;
    }

    Please note that you need to have either WordPress.com Premium or WordPress.com Business active on your site to be able to add custom CSS to your site and you can find more info on adding CSS here https://en.support.wordpress.com/custom-design/editing-css/

  • The topic ‘Want to change font color on my header.’ is closed to new replies.