How can I change the background color of the featured product collection section?

my website is plannerlike.com

I want to change the background color of the featured product collection section under the header. how can I do that?

Hi @plannerlike

Is this what you mean?

If its this, Try this.

  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#CollectionSection-1603356759910 {
    background: aquamarine;
}

I hope it help.

" :glowing_star: Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! :raising_hands: "

Hello @plannerlike ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to Assets folder → base.css file or theme.scss.liquid file

Add this following code at the bottom of page


Save and preview

Hope this can help.

Transcy