How can I better center this item?

Topic summary

A Shopify store owner seeks help centering footer elements on their site (hoodlifeclothing.eu). After sharing store credentials, a community member provides a visual example of the desired centered layout.

Proposed Solution:

  • 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 CSS code at the bottom to adjust grid layout:
    • Sets justify-content: space-around for footer block wrapper
    • Applies max-width: 20% for grid items on tablet view (min-width: 750px)

The solution targets responsive grid columns to achieve better centering of footer content. The discussion appears resolved pending confirmation from the original poster.

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

Hello,

how to put this more to middle? Thank you

1 Like

Hi @HOODLIFE

Would you mind to share your store URL? Thanks!

www.hoodlifeclothing.eu

It password protected.

hoodlife160726

1 Like

Thanks for the info, do you mean like this?

If it is 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 screen and (min-width: 750px){
.grid--4-col-tablet .grid__item {
    max-width: 20% !important;
}
.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet {
    justify-content: space-around;
}
}

And save.

If not, please specify what middle do you mean? Thanks!

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