Changing Section Background Color with CSS

I have a section that is 50% an image and 50% text. I’d like to add a background color to this section. I clicked the section and under Custom CSS typed the following:

background-color: #808080

However, this did not change the color of the sections background. My store is Shopify 1.0 and using the theme Turbo. Is this something that I’m able to do in the Custom CSS section? I appreciate any suggestions.

1 Like

Hi @EmanioCreative

You need a selector to change the section you like to change. Would you mind to share your store URL, and please point out which background you like to change? Thanks!

Sure, thank you! The page is HERE and I’d like to change the 50/50 section with the title “Skin is the Mirror to your overall health”.

Actually I was just able to find the selector! Thanks for your advice!

1 Like

Thats good to hear. Welcome.

Hello @EmanioCreative :waving_hand:

Please try this code

#shopify-section-07bf8031-8560-4699-90ff-debea615f8ed {
    background-color: #808080 !important;
}

It includes the ID of the section so it should work.