Changing font color only in image with text section

Hello Shopify Gods,

I’m now looking to change the font color of my “Image with Text” section without changing the rest of the font colors. I would like it to be white and i’m on the debut theme.

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

gleuch

Thank you!

.feature-row__item.feature-row__text.feature-row__text--right h2 {
    color: white;
}
.rte.rte-setting.featured-row__subtext p {
    color: white;
}

Add this code in theme.scss or theme.css

@ToastyDC
What color do you want and you want to change heading of image with text color to change

Top one for the heading, bottom for the copy:

.feature-row__item h2 {
    color: #fff;
}

.feature-row__item .featured-row__subtext p {
    color: #fff;
}

Just add to the bottom of your theme.css.liquid file.

@ToastyDC

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

div#shopify-section-feature-row .featured-row__subtext > p{ color: #fff !important; }
div#shopify-section-feature-row h2 { color: #fff; }

Hope this works.

Thanks!

Amazing! Thank you again!