I’ve already centered the logo in the footer but just in desktop view, i would like to make it also for mobile.
As you can see, its positioned on the left
A user seeks help centering their footer logo specifically on mobile devices, as they’ve already achieved this for desktop view. An attached screenshot shows the logo currently positioned on the left side in mobile view.
Two solutions have been proposed:
Solution 1 (oscprofessional):
.footer__logo-social {
display: inherit;
}
Solution 2 (LitExtension):
order, width, and margin: autoBoth responders requested the store URL to provide more precise solutions. GemPages support team also offered assistance but needed the store link. The user thanked the community but hasn’t yet shared their store URL or confirmed which solution worked.
Status: Awaiting user feedback on implementation.
I’ve already centered the logo in the footer but just in desktop view, i would like to make it also for mobile.
As you can see, its positioned on the left
Share the store URL…
Hello @userwithoutname
It’s GemPages support team and glad to support you today.
To provide you with the most precise solution in this case, could you please share the store link?
Thank you!
.footer__logo-social {
display: inherit;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
Hi @userwithoutname ,
Please go to Actions > Edit code > Assets > theme.css file and paste this at the bottom of the file:
@media only screen and (max-width:768px){
.header-item--logo {
order: 1;
}
.site-header__logo {
margin: auto !important;
}
.header-item {
order: 0;
width: 110px !important;
}
.header-layout--left-center .header-item--icons {
order: 2;
}
}
Hope it helps!