How can i put the footer’s menu orizzontal and centred instead of columns/vertical ?
1 Like
Hi @MarioPintus ,
Would you mind to share your URL website? with password if its protected. Thanks!
1 Like
Thank you for the information.
I Manage to change the footer but it will take me more of my time. For now this is I can give the solution I hope it help.
- 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” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
.grid.grid-spacer.main-footer {
display: grid;
grid-template-rows: repeat(3, 1fr);
}
.grid__item.large--two-fifths.medium--two-fifths.footer-item.footer-text {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
}
.grid__item.large--two-fifths.medium--two-fifths.footer-item.footer-link_list {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
}
ul.no-bullets.site-footer__linklist {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
}
.grid__item.large--one-fifth.medium--one-fifth.footer-item.footer-link_list {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
}
Result:
I hope it help.
