Hi,
I would like to change the text colour from black to white of the email sign up section on the password page of my website. See the screenshot below.
Thanks in advance.
Hi,
I would like to change the text colour from black to white of the email sign up section on the password page of my website. See the screenshot below.
Thanks in advance.
The text appears white on the mobile version but not the desktop version.
Hello @DD2024 ,
Follow these steps:
Go to Online Store → Theme → Edit code
Open your section-password.css file and paste the following code at the bottom:
.email-signup-banner__box .email-signup-banner__heading, .email-signup-banner__box div, .email-signup-banner__box form, .email-signup-banner__box form label {
color: #fff !important;
}
.email-signup-banner__box form input {
color: #fff !important;
border: solid 1px #fff !important;
}
Regards
Guleria
HI @DD2024
To complete your requests, please follow these steps:
body.password.gradient .email-signup-banner__box.banner__box.newsletter.newsletter__wrapper * {
color: white !important;
}
body.password.gradient .email-signup-banner__box.banner__box.newsletter.newsletter__wrapper .newsletter-form__field-wrapper {
border: white !important;
}
body.password.gradient .email-signup-banner__box.banner__box.newsletter.newsletter__wrapper .newsletter-form__field-wrapper .field::after {
box-shadow: 0px 0px 1px 1px white;
}
Here is the result:
I hope this helps
Best,
Daisy