Home › Forums › Claremont Pro › Remove image in post view › Reply To: Remove image in post view
March 26, 2020 at 12:32 pm
#9826
Andy
Keymaster
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;
}