Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I'm sure this is a simple line of code but I can't figure it out on my own or find the answer already.
My product images have transparent backgrounds (as evident when on a product page) but when included on a collections page, the background turns white. How do I make the background on these images transparent as well?
Solved! Go to the solution
This is an accepted solution.
Hi @myreech,
Add this css code to your theme.css.
.collection-template .card__wrapper,
.collection-template .card__info {
background: transparent;
}
This is an accepted solution.
Hi @myreech,
Add this css code to your theme.css.
.collection-template .card__wrapper,
.collection-template .card__info {
background: transparent;
}
I added this to my theme setting CSS but it didn't work?