Hello,
Is anyone able to assist my in…
-
aligning my logo image to the left of the footer in desktop mode while keeping it centred in mobile mode
-
centring my footer menu in mobile mode but keeping its alignment to the left in desktop mode
See Screenshots, Thankyou!
URL: https://www.livwithin.com.au/?_ab=0&_fd=0&_sc=1
PW: pewpog
Hi @ellacoker
Thanks for reaching out to the Shopify community!
To resolve your issue, try updating your section-footer.css file with the following code:
@media screen and (min-width: 750px){
.footer-block-image.center {
justify-content: flex-start;
}
}
@media screen and (max-width: 749px){
.footer-block__heading {
text-align: center;
}
.footer-block__details-content .list-menu__item--link{
justify-content: center;
}
}
Output:
Desktop
Mobile:
thank you very much. is there any chance you could help me out with my header post?