Remove blue background from product grid. Dawn v11. I want it to be white

Remove blue background from product grid. Dawn v11. I want it to be white.

My site:
https://ec6bc3-2.myshopify.com/
PW
eawhup

1 Like

Hi @daved1234

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. 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:
  4. And Save.
div#shopify-section-template--20384774160689__product-grid {
    background: white;
}

Result:

I hope it help.

Hello!

Thank you for your support!

Unfortunately that did not work.

1 Like

Oh can you try again this one?

div#shopify-section-template--20384774160689__product-grid {
    background: white !important;
}

Thanks!

Thanks again but still not working.

Did you add something in the base.css file that is working? Let me find another solution.

I just added what you suggested. Still not working.

1 Like

But did you add other codes in the base.css that is working?

Try this one again.

body.gradient div#shopify-section-template--20384774160689__product-grid {
    background: white !important;
}

if this one wont work paste this one on theme.liquid. before the tag.


Sample:

Then save. Thanks!

The second one worked! Thank you!

1 Like

That is good to hear. If this work please dont forget to Mark Solution and Likes. Thanks!