- /
- /
- /
Where do I add my custom CSS?
Most of ThemeGrill themes provide options in the customizer for changing most of the CSS properties like Font Size, Color, Spacing, etc. However, these options will never be sufficient for all users, so you may need to add your own custom CSS to style your site as you like.
Well, adding Custom CSS code is quite straightforward as long as you are familiar with the basics of HTML and CSS. Follow the steps below to add the CSS written by yourself or provided by us through support.
- Go to
Appearance > Customize > Additional CSS
. - Add the CSS code inside the editor.
- Click on
Publish
button of the Customizer.
For example: if you want to change the Background Color of the menu bar of the ColorMag theme, you can add the following CSS code inside the Additional CSS box as shown in the gif image below:
#site-navigation {
background-color: red;
}