Solved

Changing background colour of specific area on page

dekiv
Shopify Partner
158 2 12

 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

Screenshot 2021-07-28 153640.png

Accepted Solution (1)

dmwwebartisan
Shopify Partner
12279 2546 3693

This is an accepted solution.

@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!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app

View solution in original post

Replies 4 (4)

Zworthkey
Shopify Partner
5581 642 1565

 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.

Zworthkey
Shopify Partner
5581 642 1565
body {
  background-color: grey;
}

Paste in theme.scss
Thank you.

dmwwebartisan
Shopify Partner
12279 2546 3693

This is an accepted solution.

@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!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
dekiv
Shopify Partner
158 2 12

@dmwwebartisan Thank you!