How can I modify the color of email sign up headings in the Ride theme?

Hello :waving_hand: . I’m currently using the ride theme and would like to change the heading color and sub text color for only the email sign up section. Any help would be greatly appreciated. Thanks!

@CardTurner

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.

Hello! Thank you for taking the time. My site isn’t live currently. It’s the email sign up section that comes stock on the “ride” template (just above the footer). Any adjustments made on the base template should apply to my store. Just would like to be able to change the text color for the heading and sub text of just that section. Much appreciated.

@CardTurner

can you send store preview url

Ha sorry! https://6xdqw6s8ox55jirg-64421232862.shopifypreview.com

@CardTurner Hello, here is code for heading color.

.newsletter .newsletter__wrapper h1.h1 {
 color: #ffffff;
}

and this for sub heading color

.newsletter .newsletter__wrapper .newsletter__subheading {
 color: #ffffff;
}

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->newsletter-section.css.liquid

Note: change #ffffff with your color value.

If you find my answer helpful, please mark resolved or like.

Thank you! This definitely led me in the right direction.

What solved it was adding “color: #ffffff” to the already existing “.newsletter__subheading” in “newsletter-section.css”. Then added the following code just above the subheading code:

.newsletter .newsletter__wrapper .h1 {
 color: #ffffff;
}

Thanks again for your help. Very grateful!

It’s my pleasure to help you!