Home Forums Theme support Animacare – Hiding Featured Image in Posts Reply To: Animacare – Hiding Featured Image in Posts

Hi,

ok, to hide the image for all blog post, please go to WordPress admin -> Appearance -> Theme Options -> General -> Extra CSS Content and add this:

.single-post .category-item-img {
 display:none;
}

If you want to hide it only for one blog post, you need to know the id of the post, then add this to “Extra CSS Content” in the theme options:

.postid1234 .category-item-img {
 display:none;
}

Just replace “1234” in the code above with the id of your post, then its working.