norduxe
November 20, 2024, 10:08pm
1
Hi,
Is there anyway i can edit my footer menu so it looks more like on the picture below? So the email signup is more to the left and not at the top bottom, and also if its possible to add more text to it? So i can have a heading and some text under the header.
My url is:
https://owllode17l0qdsvo-86795059542.shopifypreview.com
AnneLuo
November 21, 2024, 12:05am
2
Hi, @norduxe
I can help you with it. But it needs to add some custom code. If you need my help, please let me know.
norduxe
November 21, 2024, 11:52am
3
Sure! Do you think you can send the code here?
AnneLuo
November 21, 2024, 11:58am
4
I can try to help you implement this change. So I need to access your store as a collaborator if possible.
Can you please send me your collaborator code and store URL with me?
namphan
November 21, 2024, 3:28pm
6
Hi @norduxe ,
I checked and with your current layout you are wanting this:
norduxe
November 21, 2024, 5:12pm
7
Yes something like this, but if possible every category is besides each other if possible? If this makes sense
namphan
November 22, 2024, 2:47am
8
Hi @norduxe ,
Please go to Actions > Edit code > Assets > section-footer.css file and paste this at the bottom of the file:
@media screen and (min-width: 750px) {
.footer__content-top {
display: flex;
justify-content: space-between;
}
.footer__blocks-wrapper {
width: 50%;
}
.footer-block--newsletter {
width: 50%;
justify-content: flex-start;
align-items: flex-start;
margin-top: 0;
}
.footer-block__newsletter {
text-align: left;
}
.newsletter-form {
margin-left: 0;
}
.footer__content-bottom {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
padding: 0 5rem;
max-width: var(--page-width);
margin: 0 auto;
}
.footer__content-bottom-wrapper {
padding: 0;
margin: 0;
}
}