How to change the colour of a specific block in venture theme?

Hi there,

I’m currently attempting to change the colour of one “image with text” block in the middle of my homepage. I’ve tried changing the code to incorporate a new background colour but I didn’t have any success. I looked at the theme’s code including the css and tried changing the wrapper and div tag and nothing changed.

Any ideas on a solution for this?

I’ve attached a screenshot to showcase the block background i’m trying to change.

Cheers

1 Like

@umutincesu

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hi,

Please share your store URL and if your store is password protected then also provide password too.

Thank you.

Hi @umutincesu ,

Go to Assets > theme.scss.liquid and paste this at the bottom of the file:

#shopify-section-image-content,
#shopify-section-image-content .section-block {
    background-color: #fff !important;
}

You can manually change the color code to your liking.

Hope it helps!

Thank you very much! This worked!!

I wanted to do the same colour change in another section “rich text”. Could you provide me the code for this too?I’ve attached a screenshot.

THANK YOU SO VERY MUCH.

Hi @umutincesu ,

Go to Assets > theme.scss.liquid and paste this at the bottom of the file:

#shopify-section-165530704090d95473,
#shopify-section-165530704090d95473 .section-block {
    background-color: #fff !important;
}

If it helped you solve your issue, please mark it as a solution. Thank you and good luck.

THANK YOU VERY MUCH. It solved my issue!

Cheers,

1 Like