Crave Theme: Center Footer Items on Mobile View

Topic summary

A user sought help centering footer items specifically on mobile view for their Shopify store using the Crave theme.

Solution Provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add custom CSS code targeting mobile screens (max-width: 749px) to center footer elements including:
    • Footer block brand info
    • Footer menu list items and links
    • Footer image wrapper

Outcome:
The solution was successfully implemented and confirmed working by the original poster, who marked it as resolved.

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

Dear Community Member.

How to make the footer items aligned to the center on mobile view ONLY?

https://sossascookies.myshopify.com/

Password: nawthi

Thank you.

1 Like

Hi @Gaiar

Try 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__brand-info {
    text-align: center !important;
}
.footer-block__image-wrapper {
    margin: auto;
}
.footer-block.grid__item.footer-block--menu.scroll-trigger.animate--slide-in {
    text-align: center;
}
a.link.link--text.list-menu__item.list-menu__item--link { 
    justify-content: center;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you so much @Made4uo-Ribe

Worked perfectly

1 Like