Change Newsletter Form position in Footer Menu mobile version

Hi,

Can someone help me please with the next case? I did some research and tried some offered solutions, but none of them worked for me.

I want to centre the Newsletter Form at the footer on the mobile version. On the desktop version it’s placed on the left and that’s fine. But the mobile version is ugly.

And i want it to be like this:

My url is: asame-mode.com

Can someone help me with this issue?

1 Like

Hi @BettoM14

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width:749px){
.footer__content-top.page-width {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-block.grid__item.footer-block--menu, .footer-block__details-content, .footer-block.grid__item {
    margin-bottom: 0;
    text-align: center;
}
.footer__blocks-wrapper, .footer-block--newsletter {
    width: 100%;
}
.list-menu__item {
    justify-content: center;
}
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Hi! I tried it in the base.css, but nothing changed. It’s still on the same place as before..