How can I change random page & section background color on the Dawn theme?

How can I change random page & section background color on the Dawn theme?

Cup2024
Visitor
2 0 1

How can I change the background color of this page, as well as other page/sections to background: 242833 and font color FFFFFF. example: https://scentsniper.com/a/faq thanks! 

Replies 2 (2)

Made4uo-Ribe
Shopify Partner
10184 2417 3060

Hi @Cup2024 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

And Save.

 

main#MainContent {
    background: #242833;
    color: #ffff;
}
main#MainContent * {
    color: #ffff;
}
h1#easy-faq-app-header,
h2#FAQ {
    color: #ffff;
}

.article-template__content span {
   background: #242833 !important;
}

 

And Save. 

Result:

Made4uoRibe_0-1718135485882.png

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Cup2024
Visitor
2 0 1

Thanks, when I entered that code, it does indeed fix the background color on the blog and faq, however I noticed the following items impacted:

- Cart had white background and white text, so couldn't read it or see a button.

- The product review star ratings on top of page and down in actual review section changed from #3FCF0B green to white.  

- Checkout was unchanged, which is fine, I don't think the checkout is amendable in basic plan. 

 

I realize the review star&bar color change to white and a different color is related to the review app. Unfortunately they don't provide knobs to adjust it without code.I could ping them for help on that side.  Not sure on the cart page.

 

Appreciate your help.

Thank you.