How to change the font color of one section in shopify

I was wondering if anyone could help me change the font color for the hyperlinks and body text to white for this section:

I was able to do the header under the theme.css liquid but because the text in this section is technically hyperlinks and body text, I cant change the color because all of the other links / body text will turn white.

Thank you in advance!

1 Like

@madisonastern

Please share store URL .

Thanks!

https://washyback.com/

The password is awtreu

Also, this was a section I added into my theme under collection.slider

Thanks for getting back to me so fast!

1 Like

Any update?

@madisonastern

  1. Go to Online Store->Theme->Edit code

  2. Asset->/theme.css ->paste below code at the bottom of the file.

#shopify-section-16312397899a2054ec.h4, #shopify-section-16312397899a2054ec h4 {
    font-size: calc(((var(--font-h4-desktop)) / (var(--font-size-base))) * 1em);
    color: #fff !important;
}

#shopify-section-16312397899a2054ec p {
    color: #fff !important;
}

Thanks!

1 Like

Thank you so much!!!

1 Like