Hiding the featured image on blog all blog posts but keeping featured image on blog index

Hello
I am using Ethos and I am attempting to hide the featured image on all my posts but not on the blog index page.
my URL is http://innergrowththerapy.com/blog/
I have used the following css in the site wide css:
.hideFeaturedImage .entry-featured {
display: none;
}

.single-post .x-main .entry-featured {
display: none;
}
I attempted to inspect the image and I used this css as well:
.attachment-entry-fullwidth .size-entry-fullwidth .wp-post-image
{
display: none;
}
None of these seemed to work. Can you please let me know a way to fix this?
Also I have over 50 blog posts so I need a site wide fix and not an individual post fix. Thank you so much!
Best,
Celine

Hi Celine,

Thank you for writing in, this block should do the trick.

/*hide feature images on individual posts page*/
​.single-post .x-main .entry-featured {
	display: none;
}

But I believe there is an error somewhere on your Theme Options > CSS (I could not point it because it seems to be minified)

Please copy all your custom CSS and check it here, then address all the found errors. Only then you can add that custom CSS block above.

Clear your caching plugins (if any) and browser’s cache after you made the changes.

Hope it helps,
Cheers!

Thank you this worked!
Best,
Celine

1 Like

On behalf of my colleague, you’re welcome. Cheers! :slight_smile:

1 Like

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