Currently i have the following products (see screenshot) i would like to change the color of the cards to #FDFBF7. could someone give me the css code for this?
my website url is mysterydates.nl
Add This css In your Edit code > base.css File
.card-wrapper .card.card--card.card--media.color-background-1.gradient {
background: #FDFBF7;
}
HI @TomBerger
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-wrapper .card--card.gradient {
background: #FDFBF7;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!