Two questions:
-
How can I fix the spacing between each of my footer sections? It seems really off and I cannot equally space anything.
-
Is it possible to change the footer menu from vertical to horizontal?
Two questions:
How can I fix the spacing between each of my footer sections? It seems really off and I cannot equally space anything.
Is it possible to change the footer menu from vertical to horizontal?
.footer-block.grid__item {
text-align: center !important;
}
On desktop its horizontal, while on mobile it vertical. Check this.
.footer-block__details-content, .footer-block.grid__item.footer-block--menu {
text-align: center;
}
.footer-block__details-content .list-menu__item {
justify-content: center;
}
And Save.
Result:
Please donβt forget to Like and Mark Solution to the post that helped you. Thanks!
That makes sense! Last question - on desktop, how do I get the menu items to align in the center? It looks like all items align to the right.