Changing background colour of specific area on page

Hi everyone,

I’m wishing to make my new arrivals section pop more and I was wondering if its possible to change that specific section background colour to something else? How do I go about doing this? Screenshot attached.

www.beachbeb.com

it would be my pleasure to help you.

Welcome to the Shopify community!
Thanks for your good question.
I will check out the issue and provide you a solution here.

body {
  background-color: grey;
}

Paste in theme.scss
Thank you.

@dekiv

please Go to Online Store->Theme->Edit code then go to assets/theme.scss.liquid ->paste below code at the bottom of the file.

div#shopify-section-1611220068d0945ff4 .simple-collection.layout-8 {
    background: gray;
}

div#shopify-section-1611220068d0945ff4 {
    background: grey;
}

Thanks!

@dmwwebartisan Thank you!