Hi there,
How can I change the text of the newsletter which says “E-Mail” to black? It’s at the bottom of my landing page. I guess it’s in component-newsletter.css but I don’t know which part to change or add.
Best,
Isa
A user needs to change the newsletter input field text color from its current color to black on their landing page footer.
Two solutions were provided:
theme.liquid modification: Add custom CSS code at the bottom of the theme.liquid file (located in Online Store → Edit Code), just above the closing </body> tag.
base.css modification: Add the following CSS rule to the base.css file (found in Assets folder):
.newsletter-form__field-wrapper .field__input {
color: #000 !important;
}
Both approaches target the newsletter form’s email input field styling. The second solution was marked as the accepted answer. The issue appears to involve standard Shopify theme customization using CSS to override default text colors.
Hi there,
How can I change the text of the newsletter which says “E-Mail” to black? It’s at the bottom of my landing page. I guess it’s in component-newsletter.css but I don’t know which part to change or add.
Best,
Isa
Hey @isabellemaria
Follow these Steps:
Mark it as Accepted Solution as well.
Hello @isabellemaria
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
.newsletter-form__field-wrapper .field__input {
color: #000 !important;
}