How change "About Us" page background color? Dawn Theme

For some reason I can’t figure out how to change my background color for my “About Us” page. It seems to be the only page with a white background and no easy options to change the background color.

Link here: https://rttrove.com/pages/about-us for those willing to help out. Thanks!

Hello! @namestolen Please follow these steps to add this CSS code:

  1. Go to your Online Store
  2. Click on “Themes”
  3. Select “Edit code”
  4. Open your CSS file. If you have a custom CSS file, open that instead.
  5. If you can’t find your custom CSS file, open “base.css”
  6. Add the following code at the end of the file.
.page-width.page-width--narrow.section-template--16117602713667__main-padding {
    background: #555;
}

If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.
Best regards
Kaushik

Hello @namestolen

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

section#shopify-section-template--16117602713667__main { background: aquamarine !important; /*change color according to you*/ }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

This worked, but I have a huge white margin at the bottom that I can’t get rid of. Do you know how to make the background seamless with the rest of the page?