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>