hello, i would like my email signup to be slightly narrower for my footer (mobile). I would only like the bit i highlighted to be narrower (the submit box i think?). Basically just the “Your email address” and the arrow to be narrower, as they are too wide:
\my store is z99nxa-bq.myshopify.com , password is rtiech - horizon themeJust wanted to say congratulations on having the most topics created in the history of Shopify Community. It’s an honor to witness.
![]()
you’re very strange…
Thank you! I look forward to seeing you switch to another free theme and seek another hundred customization questions Good luck! ![]()
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > styles.css and paste this at the bottom of the file:
@media (max-width: 768px) {
.email-signup__input-group {
max-width: 250px;
margin: 0 auto;
display: flex;
}
.email-signup__input {
flex: 1;
}
.email-signup__button {
flex: 0 0 auto;
}
}
nice to see you remember my name, because i haven’t got a clue who you are!
-
In your Shopify Admin go to online store > themes > actions > edit code
-
Find Asset > styles.css and paste this at the bottom of the file:
@media (max-width: 768px) {
.email-signup__input-group {
max-width: 250px;
margin: 0 auto;
display: flex;
}
.email-signup__input {
flex: 1;
}
.email-signup__button {
flex: 0 0 auto;
}
}
Hope this helps

