- This topic has 2 replies, 2 voices, and was last updated 4 years, 8 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Remove image in post view’ is closed to new replies.
Home › Forums › Claremont Pro › Remove image in post view
I like having the featured image in the blog post page, however, I don’t want the featured image to show when I open up the post. Is there a way to do this for every some posts?
Hi Boris,
Sorry for the late reply.
This code added to ‘Customize’ > ‘Additional CSS’ will hide the featured image on all the single posts
.single .entry-thumbnail {
display: none;
}
For a specific post use this, where “1728” is the post ID:
.single.postid-1728 .entry-thumbnail {
display: none;
}
Works great. Thank you