Changing The Product Grid Cards Background Color

Hello, I am trying to change the background color of product card grids on my collection pages and home page. I have already fixed this for the product page but not others. I would like it to be white as all my product images are transparent.

my website is http://quantumstitch.co

Forgot to add, this is the publisher theme

Hi @ZachGatti , add the below code to your theme’s CSS file.

.card .media {
    background: transparent !important;
}

That worked perfect, thank you!