Email Box Color Change

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