How can I change a footer utility menu to display horizontally

Topic summary

A user is seeking help with the Horizon Theme on their Shopify store (www.linesix.ca). They added a menu to the footer utility block but cannot change its display orientation.

Current Issue:

  • Menu items are displaying vertically
  • User wants them to display horizontally instead

Additional Context:

  • An image was provided showing the current vertical layout
  • The discussion remains open with no solutions offered yet
Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hello,

I am using the Horizon Theme. Store is: www.linesix.ca

For the life of me I cannot change the display of a menu I added to my footer utility block. I would like the pages displayed in that menu item to display horizontally vs vertically.

Any help will be much appreciated. I have added an image of the current display for your convenience.

Screenshot 2025-11-02 at 2.36.05 PM

Thank you so much.

1 Like

The LINKS displayed can be made inline instead of block styling.
Though you should seriously dig through the themes blocks to be sure this is how you want to do this.
The problem is your using the menu in a component meant to be used as an accordion; READ: it stacks.
So now your going out of the way to break that form factor instead of using or customizing a specific tool.

In a custom-css setting try this selector and style combination for desktop
, tailor margin-right to need.
Or though this is not advised remove the surrounding media query to target both mobile and desktop.
:warning: Remember mobile screens are NOT wiiiiiiiiiide exercise restraint or lose sales.

@media screen and (min-width: 750px) {
  .footer-utilities__group--middle .menu__item {
    display: inline-block;
    margin-right: 2em;
  }
}
1 Like

You can add this code to the Custom CSS section in the theme settings.

.details-content ul.list-unstyled {
    display: flex;
    align-items: center;
}
.details-content ul.list-unstyled .menu__item+.menu__item {
    margin-block-start: 0;
    padding: 0 12px;
}

Best regards,
Dan from Ryviu: Product Reviews App

Very sound advice and thank you so much for your input.

I’ve changed the mobile view menu to an accordion style menu however it is aligned left and I would like to align it in the centre. Wish I could figure out the code for myself but I can’t.

Any tips on how to do this?

Again thanks so much for your help.

Thank you so very much.

Amazing help in this community.

Would you have any idea how to align my accordion menu in the centre on mobile?

Thanks!

Hey I tried to edit my message but couldn’t.

Any idea why the word “media” is not equally spaced like the rest of the menu?

Thanks!