Change background color of image with text section

Hello Shopify gods,

I’m looking to add a background color only behind my image with text section. I’m using thee debut theme. Anyone have any advice?

https://toast-phl.myshopify.com/

gleuch

thank you!

1 Like

@ToastyDC

Could you please provide a screenshot which section you want to add background color?

1 Like

@ToastyDC

Are you talking about this section?

1 Like

please add this below code in theme.css file

.page-width.feature-row .feature-row {

background-color: #E2D3D3;

}

here , you can change color code as per your choice.

1 Like

@ToastyDC

Please add the following code at the bottom of your assets/theme.css file.

#shopify-section-feature-row{
background-color: #dcdcdc;
}

Hope this works.

Thanks!

1 Like

Amazing! One last thing, anyway to get the padding to match on the top and bottom? But without changing the padding in the sections above it.

I want the spacing to be like the bottom. Thank you!!

1 Like

@ToastyDC

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (min-width: 750px){
#shopify-section-feature-row {
padding-top: 65px !important;
}
}
1 Like

Thank you so so much!

1 Like

Hi there I am trying to do the same thing, change the background color, but need to change the background on a text column with image section-- do you know the code to achieve this?