how to make the background of my blog articles white

Topic summary

A user needed help changing their blog article background from grey to white but couldn’t find the setting in their Shopify theme (Craft).

Solution provided:

  • Navigate to Online Store → Edit Code → base.css file
  • Add CSS code at the end of the file to set background color to white (#fff)
  • Initial code targeted the main content area (main#MainContent)

Follow-up issue:
The comment section below articles remained grey after the initial fix.

Additional solution:

  • Added second CSS snippet targeting the comment wrapper (.article-template__comment-wrapper.background-secondary)
  • This successfully changed the comment section background to white as well

Resolution: Issue fully resolved. The user successfully implemented both code changes with step-by-step guidance and expressed gratitude by sending a PayPal tip to the helper.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

Hi! could you help me change the background color of my article blog to white because i have no access to any of this parametre and can’t change it. I have seen people saying to change the code but I don’t know where to go. so if you have a step to step solution it would be really helpfull please and thanks :wink:

1 Like

what’s your store url ?

Hi! it’s this one Ange et Savoir-Faire

go to your online store → edit code → base.css file and paste this code in the end

main#MainContent {
    background-color: #fff !important;
}

Ok so I go to the online store where my theme Craft is I use the … and chose changing code is that good? and them I’am on this page but where do I paste this code

search for base.css file and paste the code in the end of the file

Ok it’s good I found it and it work . Thanks you very much is it possible to do it to the comment section below the article ? because it’s still grey ?

paste this code as well there

.article-template__comment-wrapper.background-secondary {
    background-color: #fff !important;
}

Thanks you , you saved me, I have send you tips with paypal sorry I can’t do much more .

Thanks for appreciating anyway that means alot :slightly_smiling_face:
If you need any more help in future you can reach me out

1 Like