Hello,
how to put this more to middle? Thank you
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:
justify-content: space-around for footer block wrappermax-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.
Hi @HOODLIFE
Would you mind to share your store URL? Thanks!
It password protected.
hoodlife160726
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!