Remove featured image from blog post - Exhibit theme

Topic summary

Goal: Remove the featured image that appears above blog posts in the Shopify Exhibit theme.

Progress and context:

  • The requester shared store and preview links, plus a screenshot marking the featured image above the article.
  • A direct blog post URL was provided to locate the issue.

Solution provided:

  • Add a CSS rule to hide the featured image by targeting the element with the selector “.text-scheme-text .aspect-css-var” and setting display: none !important.
  • Steps: Open the theme code, locate a main stylesheet (base.css or theme.css), append the rule at the end, and save.

Clarification:

  • If base.css or theme.css are not present, adding the rule to base.bundle.css is acceptable; no need to create a new file.

Outcome and status:

  • A before/after screenshot illustrated the fix, and the requester acknowledged the guidance.
  • The issue appears resolved with the CSS approach; no remaining questions were raised.

Notes:

  • Screenshots were central to identifying the exact element to remove and confirming the result.
Summarized with AI on December 22. AI used: gpt-5.

Hi all.

I am trying to remove the blog featured image from the top of my blog posts - I have looked through various posts on here but none of the code snippets seem to work so any advice would be welcome. Am using Exhibit theme.

Thanks.

1 Like

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Sure, it’s https://9c2be0-68.myshopify.com/

I am just building the site so not yet live.

Can you share preview link @deej3107

https://n35u4nbisukwolqn-84437139801.shopifypreview.com

1 Like

Can you take a screenshot and mark the part you want to delete?

Hey. Of course. This is the top of the blog post and the ‘featured image’ loads above the article (as shown), this is the component i would like to remove

I can’t find it on your store. Can you share the link to the page where it is?

https://9c2be0-68.myshopify.com/blogs/news/creature-collective

1 Like
  • Here is the solution for you @deej3107
  • Please follow these steps:

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.text-scheme-text .aspect-css-var {
 display: none !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.
1 Like

Thanks BSS.

I don’t have either of these assets, I do have base.bundle.css - can i add there, or do i need to create base.css?

1 Like

Yes. You can add to base.bundle.css