Skip to main content
All CollectionsHow can I setup and install the Website Integration?Wix: Installation and Setup
How can I customize the colors of my Website Integration on my Wix website?
How can I customize the colors of my Website Integration on my Wix website?

Here's how you can use custom CSS on your Wix site to change your integration's colors.

Jake Scotto avatar
Written by Jake Scotto
Updated over a week ago

Important: All CSS added to your Wix site must be wrapped with <style> </style> parameters.

To get started changing the custom CSS of your Wix site, you'll wanted to first click "Add Element", "Embed Code", and then select "Custom Code".

This will open the Custom Code option of your Wix site. Here, you'll want to name your custom code (something like Website Integration CSS), change the code to load on each new page, and lastly ensure the code is placed in the Header.

Once done, you can browse this article to find the CSS snippet you want. You will need to wrap your custom CSS with <style> </style> - this parameter is not included in our documentation and must be added manually. For example, this code snippet:

gspro-item-card .gspro-o-card__add button {
background: #2A2A2A;
}

Will need to be formatted like this,

<style> 
gspro-item-card .gspro-o-card__add button {
background: #2A2A2A;
}
</style>
Did this answer your question?