How can I change the background colour of the information on the product card

I’m wondering how I can change the background colour for the product title & price only on the product card without affecting any other text on the website (such as the product page.)

(We will phase out the white backgrounds eventually and are using png for the grey background)

I have used the below code on the custom CSS section but it will not work, has anyone found a solution?

.card-information__wrapper>* {
color: #FFFFFF !important;
}

.card-information__wrapper>.price {
color: #FFFFFF !important;
}

Hello @Montique can you share the store URL?

it is Montique Clothing | Official Website - Shop Now

@Montique go to assets > base.css put this css bottom of file

.product-card-wrapper .card__information {
background-color: #eee;
}

awesome thanks you - that’s almost there

there’s still a border, can we remove this too?

.product-card-wrapper .card__content {
padding: 0;
}

1 Like

many thanks for your help!