Feature image hide on post

Hi guys
How do I hide the feature image on the post yet allow it to appear on the blog page
Post http://richardrosebery.com/my-solo-exhibition/
Blog http://richardrosebery.com/news-events/

solved it myself following another topic I used this
.entry-featured,
.entry-thumb {
display: none;
}

Thanks in advance, enjoy your day

Hi there,

In case you want to hide the featured image specifically in single posts, you can try this:

.single-post .entry-featured,
.single-post .entry-thumb {
    display: none;
}

Glad to heard you got it sorted.

Have a nice day too. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.