• Hi there,
    I’ve been trying to work out how to change the color of a blog post’s title heading. I can’t find it anywhere though? It’s currently a dark grey and I need to be able to change it per new post. Is this possible? I thought it would be editable inside each page via its editor, but I can’t see it?
    Just to be clear the title, I’m talking about is between a post’s ‘category’ and ‘posted date’ at the top of each post. So it’s the one that is a copy of the title which is entered in the ‘edit post’ page.
    Could anyone help me out in finding where to edit this?

    • This topic was modified 7 years, 1 month ago by gizmo1990.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello there,

    You should use extra CSS code to do that as there’s no option in the administration panel. The below code applies for post which the ID is 144.

    
    /* Post archive */
    .post-144 .entry-title a {
      color: #fff000;
    }
    
    /* Single post */
    .post-144 .entry-title {
      color: #fff000;
    }
    

    You can get the post ID number when editing it. In the address bar of the web browser, you’ll see a URL that reads: yoursite.com/wp-admin/post.php?post=144&action=edit

    Regards,
    Kharis

    Thread Starter gizmo1990

    (@gizmo1990)

    @kharisblank Thanks again! It’s a shame that there isn’t a system/theme wide solution though. Because of my dark theme design, I’m going to have to place code for every blog post I make. Would it be possible to simply turn off the title showing on individual posts? It’s not really needed as I could always add the title in the body of the blog post itself.

    Hello there,

    To hide the post title, you can use this CSS code:

    
    .single-post .entry-title {
      display: none;
    }
    

    Or this plugin could help without manually adding CSS code.

    Regards,
    Kharis

    Thread Starter gizmo1990

    (@gizmo1990)

    Once again, exactly what I needed. Thanks Kharis.

    You’re welcome!

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Edit blog post’s title font color?’ is closed to new replies.