Changing "Image with Text" Background Color - Brooklyn Theme

Hi Shopify Community!

Wondering if anyone knows if we can change the background color of the text pack of the Image with Text section. I want it to be different from my page background colour.

Thanks in advance,

Tracy

Hey @trasiewho ,

Please provide a screenshot. Which section color you want to change? text section?

I can see the image with text section there on the site. Please elaborate.

Thanks!

hello again @dmwwebartisan :slightly_smiling_face:

I’d like to change the colour behind the text to #EBEBEB

Ty!

Hey @trasiewho ,

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

.feature-row {
background-color: #EBEBEB;
}

Hope this will work.

Thanks!

1 Like

Again, @dmwwebartisan that did exact what I was hoping!

Can’t thank you enough for solving two issues for me tonight!!

Tracy

1 Like

Hello,

Respectfully request some help.

Need to make the text a picture bellow shadowed

text-shadow: 2px 2px 8px #FF0000

I know this is the feature.row.liquid, however, no success in my attempts.

Thank you

Hey @andrenucci ,

This is a different topic but anyway share your website URL.

Thanks!

I’m frying my brain here,

www.belapostura.com.br

Pwd: Dilao123

I’m using this code bellow on theme.scss, but the entire text in shadowed.

I only need the title itself

.feature-row__item.feature-row__text.feature-row__text–left

{
text-shadow: 2px 2px 8px #F0006B;

}

Worked using the following:

.feature-row .feature-row__text .h3

{
text-shadow: 2px 2px 8px #F0006B;

}

Hi, how can I do it in Dawn 2.0 theme?

Thanks for reply.

as of 7/23 if you paste the following in the section where you can add your own code in the actual page editor itself, you just paste the following and use the hex code you want for the color:

div {

background-color:

#000000;

}

1 Like