What am I doing wrong? This code is working for the single post but not for pages.
The goal here is to not have the featured image show up on either pages or posts.
Using Ethos with a child-theme.
/** for Single Page **/
.page .entry-featured
{
display: none;
}
/** only for Single Post Type **/
.single-post .entry-featured
{
display: none;
}
Here is an example of where the featured image is still showing up on a Page: http://vividlyclear.com/audiobook-narration/ The little owl in the square should not be there. That is just the featured image for that page.