How can i centre my footer menu for phone view
Topic summary
A user seeks help centering the footer menu on mobile view for their Dawn 12.0.0 theme. After sharing their store URL (mobsdogs.com), they receive a CSS solution.
Solution provided:
- Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
- Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add media query CSS targeting mobile screens (max-width: 749px)
- The code centers footer elements using
text-align: centerandjustify-content: centerproperties
Outcome:
The solution successfully resolves the issue, with the original poster expressing gratitude for the working fix.
Hi @mobsdogs
Would you mind to share your store URL? Thanks!
Thanks for the info, check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.footer-block.grid__item.footer-block--menu.scroll-trigger.animate--slide-in {
text-align: center;
}
.footer-block__details-content a {
justify-content: center;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Wow, you’re amazing sir thank you ![]()
