Can somebody let me know how I remove the background of my products in the product collection? The images I use don’t have a background but shopify automatticlty adds this background to the product.
https://vintengo.com/
Password: thupea
Thank you in advance!
1 Like
Hi @Vintengo
Check this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.card__inner.color-background-2.gradient.ratio {
background: transparent !important;
}
"

Your Feedback Matters! Please mark the solution and give likes to posts that helped you.
Your appreciation fuels our motivation to assist you better!

Hi @Vintengo
You can add this code to Custom CSS in Online Store > Themes > Customize > Theme settings to solve this issue.
.card__inner { background: transparent !important; }
Welcome! Would you mind hitting ‘like’ as well? Thanks!