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!