Hello!
I search for the way to change email entry box color in footer:
Your help is much appreciated!
Page preview: https://t13kfndexohji9r0-55391682717.shopifypreview.com/
Issue: User wants to change the background color of the email signup input box in the Dawn theme footer.
Solutions Provided:
Two approaches were suggested, both involving editing the base.css file:
Option 1:
.newsletter-form__field-wrapper .field__inputbackground property with desired color code!important flagOption 2:
.footer__newsletter .field:afterNote: Both solutions use custom CSS added to the bottom of the base.css file and allow color customization by replacing the provided color values.
Hello!
I search for the way to change email entry box color in footer:
Your help is much appreciated!
Page preview: https://t13kfndexohji9r0-55391682717.shopifypreview.com/
Hi @Olga_MLB ,
Go to Assets > base.css and paste this at the bottom of the file:
.newsletter-form__field-wrapper .field__input {
background: #648B80 !important;
border: 0.1rem solid #648B80 !important;
}
.newsletter-form__field-wrapper .field:before,
.newsletter-form__field-wrapper .field:after {
box-shadow: none !important;
}
You can change the color code to your liking.
HI @Olga_MLB
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
/* change the color to color you like*/
.footer__newsletter .field:after {
box-shadow: 0 0 0 1px red;
}
.footer__newsletter .field__input:focus{
box-shadow: 0 0 0 2px red;
}
.footer__newsletter .newsletter-form__button svg {
color: orange;
}
.footer__newsletter .field__label {
color: purple;
}
#NewsletterForm--footer {
color: pink;
}