How to remove feature image from post page

Hi,

I would like to remove the featured images from the single post page. I want to be able to put a different image inside my posts (so you see the featured images on the landing page blog section and inside the blog page but not inside each blog post. Is this possible in any way?

Thanks

Tania

hey there

Hope you are having a good day and thank you for your question :slight_smile:

Please add this CSS in appearance - customize - additional CSS

.post-content .entry-header {
display: none;
}

Thanks!
Colorlib Support Team

Thank you for your fast response.

I tried that CSS that you provided but it removes the picture from the main blog and from inside the post. I would like to remove it only from inside the post (so I can keep the feature picture in the main blog) Is it possible to remove the featured picture just from inside the blog posts?

Thanks

hey there

Ok, let’s modify your code little bit, try this one now:

.single-post .post-content .entry-header {
display: none;
}

that worked! thank you!!

Can you let me know how to change the font of the titles and H2 inside the post?

Thanks!

Tania

Hello Tania

this is default CSS code for fonts inside the single post for the title:

.post-content .entry-content .post-title {
font-size: 30px;
font-family: “Helvetica Neue”,Helvetica,Arial,sans-serif;
}

all you need to do is to change font size and font family