How can i move my newletter sign up to the bottom of the page on mobile view

Solved

How can i move my newletter sign up to the bottom of the page on mobile view

jordan24640
New Member
24 0 5

jordan24640_0-1725515106740.png

jordan24640_1-1725515239277.png

 

I included the picture of my shopify site's newsletter and a picture of what i want my newletter sign up to look like. 

 

 

 

Accepted Solution (1)

Huptech-Web
Shopify Partner
896 185 188

This is an accepted solution.

Hello! @jordan24640 Please follow these steps to add this CSS code

1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your CSS file. If you have a custom CSS file, open that instead.
5. If you can't find your custom CSS file, open "base.css"
6. Add the following code at the end of the file.

@media only screen and (max-width: 767px){
.footer__content-top .footer__blocks-wrapper, .footer__content-top .footer-block--newsletter, .footer__content-top .footer-block.grid__item {
    width: 100% !important;
max-width: 100% !important;
}
    .footer__content-top .footer-block.grid__item {
        margin: 0 !important;
    }
}

 

 Output:

HuptechWeb_0-1725516340101.png

 

Thank you

D.P.

 

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required

View solution in original post

Replies 4 (4)

lytechxdigital
Shopify Partner
5 0 1

Hi Jordan,

It can be done by adding responsive CSS. Both ".footer-block--newsletter" and ".footer__blocks-wrappe" will be 100% responsive. 

lytechxdigital_0-1725515968379.png

 

Huptech-Web
Shopify Partner
896 185 188

This is an accepted solution.

Hello! @jordan24640 Please follow these steps to add this CSS code

1. Go to your Online Store
2. Click on "Themes"
3. Select "Edit code"
4. Open your CSS file. If you have a custom CSS file, open that instead.
5. If you can't find your custom CSS file, open "base.css"
6. Add the following code at the end of the file.

@media only screen and (max-width: 767px){
.footer__content-top .footer__blocks-wrapper, .footer__content-top .footer-block--newsletter, .footer__content-top .footer-block.grid__item {
    width: 100% !important;
max-width: 100% !important;
}
    .footer__content-top .footer-block.grid__item {
        margin: 0 !important;
    }
}

 

 Output:

HuptechWeb_0-1725516340101.png

 

Thank you

D.P.

 

If you found this response helpful, please do like and accept the solution. Thanks!
Need support with Customizing your Shopify store?
Feel free to contact me at info@huptechweb.com or Visit our website Huptech Web.
Instant Shortcode Builder: Integrate customizable UI features anywhere in your store - No coding knowledge required
jordan24640
New Member
24 0 5

Thank you that worked. Can you help with adjusting my newsletter on desktop view to be wider so that it shows 2 lines of words and also have the social media icons to be under the newsletter. currently it looks like this 

jordan24640_0-1725516967832.png

 

Vinsinfo
Shopify Partner
394 138 132

@jordan24640 Please follow below steps to move the newsletter to bottom on mobile view. Let me know whether it is helpful for you.

 
1. From admin go to "Online Store" -> "Themes".
2. Click action button from the current theme and select "Edit code".
Vinsinfo_0-1725517477526.png
3. Go to "section-footer.css" file.
Vinsinfo_1-1725517482512.png
4. Paste the below code at the bottom of the file and save changes.

 

.footer-block--newsletter {
    flex-direction:column;
}
.footer-block--newsletter .footer-block.grid__item {
    width: 100%;
    max-width: 100%;
}
@media screen and (max-width: 767px) {
    .footer__content-top.page-width {
        display: flex;
        flex-direction: column;
    }
    .footer-block--newsletter {
        width: 100%;
    }
}

 

Vinsinfo_2-1725517491332.png

 

 

Result will be like,
Vinsinfo_3-1725517497557.png
Vinsinfo_4-1725517503990.png

 

 
Please provide your support by click "Like" and "Accepted" if our solution works for you. Thanks for your support.
Please reach out to bizdev@vinsinfo.com for any enquires related to Shopify.
Our Services: Custom Theme Development, Theme Customization, Custom Feature Implementation, Data Migration, Custom APP Development, Website Optimization and Google Merchant Center Support