First, head to your website's Custom CSS section (Article). Looking to adjust the CSS on your Wix site? Click here.
Enter this snippet of code to change the background of your item cards:
gspro-item-card {
background: rgb(250, 250, 250);
}
The default color is White. To change the color, use this Color Picker to determine the correct Red, Green, and Blue numerical value. For example, let's say I wanted an aqua blue. I'd use the color picker,
Then, adjust the above code to include the correct RGB value:
gspro-item-card {
background: rgb(0, 255, 255);
}
Paste this code into your Custom CSS,
Your colors are now customizable!
You can use rgb or a hex code to change the colors of each element.
To view all available options for customizing your Website Integration, check out this article.