Skip to main content

How Can I Change the Item Card Background Color on My Website Integration?

Learn how to change the background color of item cards on your Website Integration using simple CSS.

Jake Scotto avatar
Written by Jake Scotto
Updated this week

This feature is available on all Goodshuffle Pro Plans.

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.


Need Additional Support?

Click the blue chat bubble in the bottom corner of your screen to message our support team—we’re happy to help!

Did this answer your question?