Hi all, I would like to make my footer menu horizontal. I am using Venue theme. Here is a link to my website: https://pinkgardens.co/
1 Like
In your theme’s CSS file, try pasting this in the bottom and let me know if it works:
.footer-nav__items {
display: flex;
}
.footer-nav__items li {
margin-right: 1em; /* adjust this value to change spacing */
}
yes, please add this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.css ->paste below code at the bottom of the file.
.footer__content .o-layout__item.u-1\/1.u-1\/2\@tab.u-1\/2\@desk {
width: 100%;
text-align: center;
}
ul.footer-nav__items {
display: flex;
justify-content: center;
}
.footer-nav__item {
margin: 0px 5px;
}
Layout
1 Like
Hi, this worked but doesn’t look like the picture. How can I make it look like the picture you uploaded? Thanks
1 Like
oh sorry for that can you add this code also
.footer__content .o-layout__item {
width: 100% !important;
}
.footer--dark .footer-nav__title {
text-align: center;
}
1 Like
Hi @Discopacecat ,
Thank you for reaching out to the Shopify forums!
Let me quickly fix that issue for you.
Please add below code
- Go to Online Store > Themes > Edit
- Go to Asset > find theme.css > Paste below code
.footer__content .o-layout__item.u-1\/1.u-1\/2\@tab.u-1\/2\@desk {
display: flex;
justify-content: center;
width: 100%;
text-align: center;
}
If its working on your store then, please do not forget to accept this solution ![]()
Thanks & Regards,
Prezen Tech

