I want to change the background colour on my site to brown

Solved

I want to change the background colour on my site to brown

Wildwestsisters
Tourist
8 0 1

I want to customise my site theme colours to my brand 

background colour  to brown #8c624d (Brown)

Accepted Solution (1)

Promer-Alena
Shopify Partner
250 26 108

This is an accepted solution.

Head to Online Store > Themes > Customize, then look for Theme Settings > Colors, where you can update the background to #8c624d.

If your theme doesn’t have this option, go to Edit Code, open base.css (or theme.css) under Assets, and add this:

 body {
        background-color: #8c624d !important;
}

View solution in original post

Reply 1 (1)

Promer-Alena
Shopify Partner
250 26 108

This is an accepted solution.

Head to Online Store > Themes > Customize, then look for Theme Settings > Colors, where you can update the background to #8c624d.

If your theme doesn’t have this option, go to Edit Code, open base.css (or theme.css) under Assets, and add this:

 body {
        background-color: #8c624d !important;
}