Changing colour of header text

  • Unknown's avatar

    Hi there,

    Totally new to CSS.

    Does anyone know how to change the colour of the header of individual blog posts?

    This is so I can make them match the header image.

    Thank you in advance.

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

  • Unknown's avatar

    Hi edenshadow,

    Sure! As an example, the title for “Happy Holidays From Eden Shadow” can be changed with this CSS:

    .post-920 .entry-title {
    color: #ffffff;
    }

    #ffffff can be any colour value you like and this will update the title on the individual post:

    Happy Holidays from Eden Shadow.

    .post-920 is the body class that targets this particular post. You will need to find this information for each post you would like to change by “viewing page source” in your browser. Then search for “postid” and you should see “post-XXX” — that’s the information you need.

    Come back to me if you have any questions or need further help.

  • The topic ‘Changing colour of header text’ is closed to new replies.