How do I change the background color of my site (Sense)

Hi Guys,

www.cocomish.com
I just created my website, I created schemes as well. But there is on color behind sections I couldnt find how to change. I just want to have just white color! But couldnt find it.

Hi @korayaks

You can follow the instruction here :

  1. Go to Shopify > Online store > theme > customize

  2. Click to Settings > Custom CSS > Paste this code to the section and save.

main#MainContent, body {
    background: black !important;
}

Here is the result:

1 Like

Hey @korayaks ,

Add this CSS to your base.css file :slightly_smiling_face:

body.gradient {
background: #FFFFFF;
}

Cheers!
Shubham | Untechnickle

1 Like

Hello @korayaks
Go to online store ----> themes ----> actions ----> edit code ---->base.css
add this code at the end of the file and save.

@media screen and (min-width: 750px) {
.section-header {
margin-bottom: 0px !important;
}
.section + .section {
margin-top: 0px !important;
}
}

Thanks

1 Like

Thank you Liz!
You made my day!