Hello everyone,
I want to change the position of my Newsletter form in the footer menu of the Dawn Theme. Please help me.
Thank you in advance for your help!
Store: https://delicious-fruits-vegetables.myshopify.com/
Password: Admin
A user seeks to reposition the newsletter signup form in the footer of Shopify’s Dawn theme.
Two community members provide CSS solutions:
Desktop Solution:
.footer__content-top container@media screen and (min-width: 768px) to avoid affecting mobile layout<head> tagFollow-up Questions:
The original poster confirms the desktop solution works but asks two additional questions:
Status: Partially resolved - desktop positioning achieved, but mobile positioning and styling customization remain open questions awaiting response.
Hello everyone,
I want to change the position of my Newsletter form in the footer menu of the Dawn Theme. Please help me.
Thank you in advance for your help!
Store: https://delicious-fruits-vegetables.myshopify.com/
Password: Admin
Here is the code you can use:
.footer__content-top.page-width {
display: flex !important;
}
.footer__content-top .footer__blocks-wrapper {
width: 75% !important;
}
.footer__content-top .footer-block--newsletter {
align-items: start !important;
margin-top: 0 !important;
}
Here is the result:
You can add the code in the Custom CSS field.
Hope this can help!
Best,
Daisy
Please add this code to theme.liquid file, after in Online Store > Themes > Edit code
To help the change not affect the mobile version, you can use this to apply on desktop instead:
@media screen and (min-width: 768px){
.footer__content-top.page-width {
display: flex !important;
}
.footer__content-top .footer__blocks-wrapper {
width: 75% !important;
}
.footer__content-top .footer-block--newsletter {
align-items: start !important;
margin-top: 0 !important;
}
}
Hope this can help!
Best, Daisy
Wow Great. It worked. Thank you So much. The newsletter form can be placed on the left side in mobile mode. Also can change the style of newsletter form like below image? Is it possible?