Hello everyone!
So I’ve already seen topics with the same issue, but the solutions have never worked for me. I would simply like to align my newsletter with the other menu items to have something elongated and neat.
Thanks you
Hello everyone!
So I’ve already seen topics with the same issue, but the solutions have never worked for me. I would simply like to align my newsletter with the other menu items to have something elongated and neat.
Thanks you
Hi @YugoBangkok
Can I take a look, Would you mind to share your store URL? Thanks!
Hello @Made4uo-Ribe ![]()
Here is https://0ec610-2.myshopify.com/
Thanks for the info, do you mean like this?
If it is check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
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 (min-width: 749px){
.footer__content-top.page-width {
display: flex;
justify-content: space-between;
}
.footer-block--newsletter.scroll-trigger.animate--slide-in {
flex-direction: column;
margin-top: 0px;
}
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet.scroll-trigger.animate--slide-in {
flex: auto;
}
}
And save.
This one will only showed in the desktop. The mobile will be different alignment.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks you
and the other side ? the newsletter on the left ?
Sorry, I dont get it. Do you like side by side newsletter?
I want the newsletter block to be on the left, taking the first position before the footer menu in mobile mode ![]()
that’s not a problem
Add this code then.
@media only screen and (min-width: 749px){
.footer__content-top.page-width {
gap: 8px;
flex-direction: row-reverse;
}
.footer-block--newsletter.scroll-trigger.animate--slide-in {
width: 25%;
align-items: flex-start;
}
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!