jfja
July 3, 2023, 12:45pm
1
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!
Moeed
July 3, 2023, 1:10pm
3
Hey @jfja
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
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
jfja
July 3, 2023, 3:02pm
4
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;}
jfja
July 4, 2023, 11:56am
6
This worked perfectly, thank you!
@jfja
If helpful then please Like Solution.