Email Box Color Change

Topic summary

A user seeks help changing an email subscription box color to white on their Shopify store.

Solution provided:

  • Navigate to Admin โ†’ Online Store โ†’ Theme โ†’ Edit Code
  • Locate the base.css or theme.css file
  • Add CSS code at the end of the 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.

Summarized with AI on November 7. AI used: claude-sonnet-4-5-20250929.

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)

1 Like
  • Here is the solution for you @BLola
  • Please follow these steps:

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press โ€˜Saveโ€™ to save it.
.newsletter-form__field-wrapper .field__input {
    background: white !important;
}
  • Here is the result you will achieve:

  • Please press โ€˜Likeโ€™ and mark it as โ€˜Solutionโ€™ if you find it helpful. Thank you.
1 Like

Thank you for your help! It worked!

1 Like

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;
}