How to change font color with Custom Design?

  • Unknown's avatar

    I am using the Wu Wei theme and am having trouble changing the font color of the header (clicking on site title in dashboard doesn’t show header color) and also cannot change font color of the body text. How do I go about changing these?

    Thanks
    Chris

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

  • Unknown's avatar

    Hi Chris,

    You can do that if you edit CSS! So for the Header font color, please go to Appearance > Customize > CSS and add this:

    #masthead h1, #masthead h1 a, #masthead h2, #masthead h2 a {
    	color: #CSS COLOR VALUE;
    }

    For the CSS color value, you can choose a color from here:

    http://www.w3schools.com/tags/ref_colorpicker.asp

    Please make sure the # in in front of the number. So an example would be this:

    #masthead h1, #masthead h1 a, #masthead h2, #masthead h2 a {
    	color: #555;
    }

    For the body text, please add this:

    .entry-content p {
    	color: #CSS COLOR VALUE;
    }

    Let me know if you have any questions with this!

  • The topic ‘How to change font color with Custom Design?’ is closed to new replies.