Blog page title font setting

Hey all,

wanted to know which css should I use as additional css to edit the blog page main title and post titles.

thank you!

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*blog page main title*/
.blog .post-content .entry-content .post-title a{
 color:blue;
}

/*post title*/
.post-template-default .post-content .entry-content .post-title a{
 color:red;
}

Best regards,
Support.

hey support,

this doesnt seems to be working with the main title but working on the post title.

however I realise the main title changed to the post title as well as I making a testing post.
please see attached.

thanks.

Hello there,

The following CSS will allow you to change the post title color:


.page-title {
    color: blue;
}

Best Regards,
Support

hey support,

it’s not working…
https://antoniokam.com/index.php/blog/

its the blog title up at the title image will change to same as blog title when we click into a particular post?

hey support,

any fix for the two issues?

thanks.

Hello there,

Please try using this CSS set instead:


/*Post title*/
.post-content .entry-content .post-title a {
    font-size: 30px;
    color: blue;
}

/*Page title*/
h3.page-title {
    font-size: 30px;
    color: white;
}

Best Regards,
Support

hey support,

thanks! the code works on changing the colors.
pls have a look on the attachment, it is how it should be that the page title change as I click into post?

Hello there,

The page title should change to the blog title when you are looking at the specific blog post.

Best Regards,
Support

okay got it, thanks!