Hi everyone,
Can someone please let me know how to change the color of this email box to white?
Thank you!
Here is my store: My Store (76efa0-54.myshopify.com)
A user seeks help changing an email subscription box color to white on their Shopify store.
Solution provided:
base.css or theme.css file.newsletter-form__field-wrapper .field__input {
background: white !important;
}
Outcome:
The original poster confirmed the solution worked successfully. Multiple respondents offered nearly identical CSS-based fixes, all targeting the newsletter form fieldโs background property.
Hi everyone,
Can someone please let me know how to change the color of this email box to white?
Thank you!
Here is my store: My Store (76efa0-54.myshopify.com)
.newsletter-form__field-wrapper .field__input {
background: white !important;
}
Thank you for your help! It worked!
Glad to help you. Have a good day.
Hi @BLola ,
Step 1. Go to Admin โ Online store โ Theme > Edit code
Step 2. Find the file base.css.
Step 3. Add these codes to the end of the file
.newsletter-form__field-wrapper .field > input{
background: #ffffff!important;
}