Hey all, I’m trying to make my footer links horizontal and I can’t figure out how to fix? Site is WyCoVintage.com, any help would be greatly appreciated.
Thanks,
Patrick
A Shopify store owner seeks help making footer links display horizontally instead of vertically on WyCoVintage.com.
Solutions Provided:
Code-based approach: Remove the Nav--vertical class from the footer.liquid file in the theme code editor. This requires accessing Shopify admin → Online Store → Themes → Edit code, with recommendations to backup the theme first.
CSS solution: Add custom CSS through Theme settings → Customize → Theme settings to override the vertical layout:
.Footer__Main .FooterBlock--links .Nav--vertical {
flex-direction: row;
}
.Footer__Main .FooterBlock--links .Nav--vertical li {
margin-right: 16px;
}
A screenshot demonstrates the expected horizontal layout result. The issue was resolved after the store owner implemented one of the suggested solutions.
Hey all, I’m trying to make my footer links horizontal and I can’t figure out how to fix? Site is WyCoVintage.com, any help would be greatly appreciated.
Thanks,
Patrick
Hi Patrick! I noticed your footer links are using a vertical layout class. Let me help you make them horizontal.
Looking at your site’s code, I can see the navigation uses the Nav–vertical class.
Here’s how we can fix this:
Before making any changes, I recommend:
Would you mind checking your theme customizer settings as well? Sometimes there might be a built-in option to change the menu layout, though this varies by theme. Let me know if you can’t find it and we’ll stick with the code solution.
If you’d like more customized help with your store’s design, feel free to send me a PM.
Hi @wycovintage
You can do that by adding this code to Custom CSS in store admin > Sales channels > Online Store > Themes > Customize > Theme settings
.Footer__Main .FooterBlock--links .Nav--vertical {
flex-direction: row;
}
.Footer__Main .FooterBlock--links .Nav--vertical li {
margin-right: 16px;
}
Thank you!
You are very welcome!