Hello,
I would like to be able to change the color of the border and the text of the email form to white on the password page only. Seems like i could only do the arrow for now. (see code in screenshot). Thanks for your help
A user seeks to change the email signup form’s border and text color to white on their store’s password page.
Initial Solution:
Working Fix:
After several iterations, the solution that worked was:
.newsletter-form__field-wrapper .field:after {
box-shadow: unset !important;
border: solid 1px white !important;
}
Additional Requests Resolved:
Mobile image ratio issue: White space appeared under images on mobile view
.banner__media.media { min-height: 50rem !important; }Content positioning: The image fix caused horizontal centering issues
.banner__content { top: 150px !important; }All CSS modifications use @media screen and (max-width: 767px) for mobile-specific targeting. The discussion appears resolved with working solutions for all issues.
Hello,
I would like to be able to change the color of the border and the text of the email form to white on the password page only. Seems like i could only do the arrow for now. (see code in screenshot). Thanks for your help
Hey @lplabranche
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
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Unfortunately didn’t apply to the password page. Thanks
However I added some of your code directly to the page instead to do it in the theme.liquid file and now only the outline color change is missing. I don’t knwo if you could help me from there
Hey @lplabranche
Try adding this code in there as well
.newsletter-form__field-wrapper .field__input:after {
box-shadow: 0 0 0 var(--inputs-border-width) rgb(255 255 255 / 55%) !important;
}
did try and it’s the only one that did not work
Hey @lplabranche
This one would work, give this one a try
.newsletter-form__field-wrapper .field:after {
box-shadow: unset !important;
border: solid 1px white !important;
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
did the trick much appreciated!
I would have one more request if you don’t mind. I would like the image ratio to be resized for mobile view only so the white space
underneath the images disapears. Let me know if you can help!
Hey @lplabranche
Add this code
@media screen and (max-width: 767px) {
.banner__media.media {
min-height: 50rem !important;
}
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Great! but it created an other issue whereas I need to drop all the content of the section to center it horizontally in the section. Would you have a solution for that as well?
Hey @lplabranche
Add this code
@media screen and (max-width: 767px) {
.banner__content {
top: 150px !important;
}
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed