How can I alter the background color of my product collection?

Hello,

I’m trying to change the background color of this product collection section on my home screen.

I’ve done it in featured product section by adding css to the section:

div {
background-color: #ffffff;
max-width: 100%;
}

However, when I do so for the Product Collection, it covers the images with white.

Any recommendations are appreciated~ My site is: thespiralpath.myshopify.com

Thank you!

Hi @plants4friendz

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:
.collection.section-template--16845158318325__featured_collection-padding {
    background: #ffff !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you so much!