Popular CSS customizations
Custom CSS can be used in a variety of ways and is the perfect option for minor customizations. Here are a few guides for commonly requested customizations.
Change the background color for a section
Navigate to the section you want to edit.
In the settings panel scroll to the bottom and open Custom CSS.
Alternatively, if you want to apply this change across your entire store front navigate to Theme settings > Custom CSS
Paste the following code in the input field and update the color value to any hex color code.
section { background-color: #000000; }
Change the color of section section headings
Navigate to the section you want to edit.
In the settings panel scroll to the bottom and open Custom CSS.
Alternatively, if you want to apply this change across your entire store front navigate to Theme settings > Custom CSS
Paste the following code in the input field and update the color value to any hex color code. E.g.
#000000
could be changed to#ffffff
.
h3 { color: #000000; }
Change the color of a button
Navigate to the section you want to edit.
In the settings panel scroll to the bottom and open Custom CSS.
Alternatively, if you want to apply this change across your entire store front navigate to Theme settings > Custom CSS
Paste the following code in the input field and update the color value to any hex color code.
In the below example,
#000000
can be replaced to change the background of the button,#ffffff
can be replaced to change the text color of the bottom
.btn { background: #000000; border: #000000; color: #ffffff; }
Adjust the size of a button
Navigate to the section you want to edit.
In the settings panel scroll to the bottom and open Custom CSS.
Alternatively, if you want to apply this change across your entire store front navigate to Theme settings > Custom CSS
Paste in the following code. Adjust any of the values to change the button as needed
.btn { font-size: 24px; padding: 10px 30px; }
Last updated
Was this helpful?