Option to turn off the featured image at the top of single post

Hi there, I am making some edits to a site that uses the Ethos stack.
One of the customizations done was to hide the featured image on single posts using css:
/* HIDE THE VERY LARGE IMAGE AT THE TOP OF SINGLE POSTS */
.single-post .entry-featured {
display: none;
}

However, this css rule also hides any featured images in the sidebar.
Is there a neat way to hide only the big featured image before the content the single post without affecting the content elsewhere (widgets, sidebars, etc) ?

Thanks!

Hi there,

Please try:

.single-post .x-main .entry-featured {
    display: none;
}

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

Cheers, thanks.

You’re most welcome!

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