Hi
I have tried a couple methods to center my footer on mobile including injecting code into the theme.liquid but nothing has worked so far.
Any help is greatly appreciated.
Thank you!
A Shopify store owner is unable to center footer elements (copyright text and payment methods) on mobile devices despite trying multiple solutions, including code injection into theme.liquid.
Resolution:
justify-content: center and align-items: center to the .footer-container-2 classcomponents.css fileOutcome:
The CSS code successfully resolved the centering issue. The discussion is now closed with the problem solved.
Hi
I have tried a couple methods to center my footer on mobile including injecting code into the theme.liquid but nothing has worked so far.
Any help is greatly appreciated.
Thank you!
@WVVW Can you please share this page link?
Sure! I should have given that earlier -
https://ssy4z6-x4.myshopify.com/
Thank you ![]()
@WVVW - this page do not have footer
Oh I must be mistaken.
I am trying to center the copyright text and payment methods(just paypal at the moment).
@WVVW - can you please share the password to view page?
Oh I didnt realise it would be sending you to the password page!
the password is s1xte6n
Thank you! my mistake!
@WVVW add this css to the end of your components.css file and check
@media screen and (max-width: 768px) {
.footer-container-2 {justify-content: center !important; align-items: center !important;}
}
This worked!
Thank you very much, I really appreciate your help ![]()