How to remove featured blog photo from blog post?

Topic summary

Goal: Keep the featured image on the blog list page, but hide it on individual blog posts.

Main approach (theme-dependent): add a small CSS rule to the theme’s stylesheet to hide the image within the article template. File names vary by theme and may be SCSS/CSS/Liquid under Assets. Access via Online store > Themes > Actions > Edit code, then append CSS at the end and save. Clearing cache may help.

Theme-specific CSS examples shared and confirmed by users:

  • Mobilia: #shopify-section-article-template .image-element__wrap { display: none; }
  • Timber: .template-article .article–image-wrapper { display: none; visibility: hidden; }
  • Venture: .template-article .article__photo-container { display: none; visibility: hidden; }
  • Warehouse: .blog-post .article__image-wrapper { display: none; visibility: hidden; }
  • Empire: .template-article .article–content img { display: none; visibility: hidden; }
  • Envy: .template-article .article-image { display: none; visibility: hidden; }

Notes and edge cases:

  • Some themes use styles.scss.css, timber.scss, theme.css, or theme.scss.liquid; newer themes may have different asset names.
  • Pipeline case: image was inserted from the page/backend, not theme—remove there; if it affects other areas, target with a specific class/id (unresolved).

Status: Multiple successes across themes; recent posts report missing legacy asset files and request updated guidance. Discussion ongoing.

Summarized with AI on December 27. AI used: gpt-5.

I am having the same issue, however i have theme.scss.liquid as an option and none of these codes have worked.

these are the only options i have under assets. Using Venture theme