How to change the color of the email box on password page - Impulse Theme

Hello,

How do I change the color of the email box on my password protection page only? I want to change the box so it’s transparent and the words “Email Address” to the color white. I was able to change the “Enter” button color to white, but I can’t get the Email Address box to change. The link is Blanca

@jfja

Please add the following CSS code to your assets/theme.scss.liquid bottom of the file.

.password-page__signup-form .input-group-field {background-color: transparent !important;color: #fff !important;}
.password-page__signup-form input, textarea, select {border: 1px solid #fff !important;}
.password-page__signup-form input::placeholder {color: #fff !important;}

Thanks!

Hey @jfja

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Thanks for the help! Not sure if i’m doing anything wrong, but it doesn’t seem to have changed.

@jfja

Please add the following CSS code to your assets/theme.scss.liquid bottom of the file.

.password-page__signup-form .input-group-field {background-color: transparent !important;color: #fff !important;}
.password-page__signup-form input, textarea, select {border: 1px solid #fff !important;}
.password-page__signup-form input::placeholder {color: #fff !important;}

This worked perfectly, thank you!

@jfja

If helpful then please Like Solution.