Hi,
We are new to Shopify.
Is there a way to centre the footer menus on our website?
Spicy Protect - UK Security Suppliers
Maybe add some padding to the left of the first menu in the footer?
Thanks for any help?
Phil
A Shopify store owner seeks help centering footer menus on their website.
Solution Provided:
Two CSS Options Offered:
text-align: centerThe solution includes specific CSS selectors targeting .footer.site-footer.small--text-center elements. Code snippets and visual examples were shared to demonstrate the changes.
Outcome: The original poster confirmed the solution worked perfectly, marking the issue as resolved.
Hi,
We are new to Shopify.
Is there a way to centre the footer menus on our website?
Spicy Protect - UK Security Suppliers
Maybe add some padding to the left of the first menu in the footer?
Thanks for any help?
Phil
Hi @spicyprotect ,
You just like it to align center also the text itself also? like this.
footer.site-footer.small--text-center .grid {
text-align: center
}
Or you just like to add the padding to place it in center.
footer.site-footer.small--text-center .wrapper {
padding: 0 10px 0px 150px;
}
I hope it help.
Thank You !!!
Work Perfect