How do I delete a blog featured image from the blog post page?

Good Evening.

Disclaimer: This website contains adult products.

I would like remove the featured blog post image from all of my blog posts. On this page, the image “kink, noun” is displayed from the blog post collection page. What part of the code needs to be removed to achieve this?

Thanks in advance!

1 Like

@Snohx ,

Remove this image through blog post one by one.

If it will not work then share the url with me!

@Snohx

Please add the following CSS code to your assets/theme.scss.liquid bottom of the file.

#shopify-section-article-template .rte img {
    height: auto;
    display: none !important;
}

Thanks!

Hi @dmwwebartisan , I added that code to my theme-css.liquid asset, but it did not remove the image from the blog post page. I also tried in within the article-template section, but also did not work. Any idea why?

Thanks in Advance.

@Snohx ,

.article_featured-image {
    display: none;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid