Head to your websites Custom CSS section (Article)
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!
To view all available options for customizing your Wishlist, check out our Developer Docs.