How can I change the background color of my blog?

Hi

On my website : https://f01138-5e.myshopify.com/

I would like to change the background color : https://f01138-5e.myshopify.com/blogs/points-de-vente/e-leclerc-plerin by black and gold as all the others page of the website

thanks a lot guys :slightly_smiling_face:

Hi Edgard, what you need is to add color-scheme-3 class to your blog section (id=β€œMainContent”):

Go to your online store β†’ customize β†’ settings β†’ custom css and paste this code thhere

article.article-template{
background-color: #202020;
color: #fff;
margin-bottom: -35px;
}

.article-template__link{
color: #fff;
}

.article-template__title:not(:only-child){
color: #fff;
}

.share-button__button{
color: #fff;
}

1 Like