Empty image blocks on my blog page

How do I remove the empty image placeholders on my blog page. The posts themselves are fine, but I can’t get rid of image placeholders on the blog index page. This situation seems like this post: https://colorlibsupport.com/t/post-page-empty-image-shapely/25428

The url for my page is: https://sailtupelohoney.com/blog/

Thanks,
Bob

Hi Bob

You can either change this placeholder image https://sailtupelohoney.com/wp-content/themes/shapely/assets/images/placeholder.jpg to something very small or customized or by simple adding CSS:

.post-content .entry-header > a {
    display: none;
}

Regards

1 Like

The CSS script works on the blog and post pages. However, the placeholder still shows in the Blog Single Settings Related Posts Area on the post page. Turning related posts area off removes the image placeholder, but I would rather not have to do that. Is there an additional fix?
Bob

Hi Bob.

Lets add this css code:

.shapely-related-posts .related-item-thumbnail {
    display: none;
}

Regards