How Do i Remove Background from featured collection even though image has background already removed

Topic summary

A Shopify store owner encountered an issue where product images with transparent backgrounds were displaying with a background in the featured collection section, despite appearing correctly on individual product pages.

Solution Provided:

  • Check theme customization settings first
  • If unavailable there, add custom CSS code to remove the background
  • Navigate to: Admin > Online Store > Edit Code > locate ‘component-card.css’
  • Insert CSS snippet at the top to make card backgrounds transparent using background: transparent !important;

Outcome:
The CSS solution successfully resolved the issue. The discussion is marked as resolved with the original poster confirming the fix worked.

Summarized with AI on November 13. AI used: claude-sonnet-4-5-20250929.

How Do i Remove Background from the featured collection even though the image background is already removed

it has no background when you go into the actual individual product when it comes to featured collection its still

here is my store so you can check it out

https://e09696-6.myshopify.com

Hi KineticWrld,

Depending on your theme you might be able to do it in your customise theme section, if you can not, the easiest and quickest way is just to do it via CSS. Go to Admin > Online Store > Edit Code (under the 3 … near the ‘customise’ button) > search for ‘component-card.css’ and then just add this at the very top.

.card--card.gradient,
.card__inner.gradient {
    background: transparent !important;
}

this will end up looking like this

Hopefully, this is what you are after :slightly_smiling_face:

Danny
Shopify Partner @Swift Productions

1 Like

Thank you !! it worked

No worries :slightly_smiling_face: if you have any other issues just reach out, happy to help

Danny
Shopify Partner @Swift Productions