Hey team
On my site I have posts like this that are generated for every event on my calendar.
I need a method to make just the smaller featured image at the top of the post to disappear. This method should be applicable across the site please.
Cheers
Hey KMCHOUSTON,
Thank you for the inquiry.
You can add this css code to hide the image.
#top .fullsize .template-blog .blog-meta .attachment-square.size-square.wp-post-image {
display: none;
}
To completely remove the square container, use this css code instead.
#top .fullsize .template-blog .blog-meta {
display: none;
}
Best regards,
Ismael