How can I alter the background color on my About Us page using Custom CSS?

Hello, looking to change the actual background for our “about us” page. I found some code to add to the “Custom CSS” area because I would rather not mess with the theme code for something so small.

div {
background-color: #cdd193;
}

The above code mostly worked, it only changed the main section with information and not the entire background. I want them both to match and wanted to see if it was possible to change through Custom CSS and not change any liquid coding.

Let me know if that is possible

Thank you!

1 Like

Hello @fgunn_1

Kindly provide the website URL along with the corresponding password.

Thank you!

Hello,

https://ecodecors-decoteak.myshopify.com/pages/about-decoteak

We are also using theme Warehouse

Hey @fgunn_1

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @fgunn_1

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.

body {
    background: #cdd193 !important;
}