Centre footer menu for phone view - DAWN 12.0.0 - 2024

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: center and justify-content: center properties

Outcome:
The solution successfully resolves the issue, with the original poster expressing gratitude for the working fix.

Summarized with AI on November 13. AI used: claude-sonnet-4-5-20250929.

How can i centre my footer menu for phone view

1 Like

Hi @mobsdogs

Would you mind to share your store URL? Thanks!

1 Like

https://mobsdogs.com/

1 Like

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!

1 Like

Wow, you’re amazing sir thank you :grinning_face_with_smiling_eyes:

1 Like