Make Dawn theme entire home page background color to white chocolate color( #EDE6DE).

I’m using the latest version of the Dawn theme, and I need to change the background color of the entire homepage to white chocolate (#EDE6DE). Currently, the entire website displays in white chocolate, except for one section that appears differently only on mobile devices, specifically on iPhones. I’m not sure why this is happening, but I need that section to match the white chocolate (#EDE6DE) color as well.

Website: https://rugd-in.myshopify.com/

Password: rugged

Thanks in advance

Hey @Sivadarshan

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


RESULT:

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

Best Regards,
Moeed

1 Like

Hi, @Sivadarshan

Can you share the page url? So that I can assist you.

1 Like

Hello @Sivadarshan

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

body { background-color: #EDE6DE !important; }

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

1 Like

@Sivadarshan
perfect solution.please add this in base.css

@media only screen and (max-width: 768px) {
ul.collection-list {
    margin-bottom: 0 !important;
}
}
1 Like

Is there a way you can do this fora background gradient vs a solid color?