• Is there a way to change the menu alignment in the Ixion theme? Currently, it is aligned to the right, which causes a second layer in the menu for our last item. I would like to alignment to the left in order to eliminate the second layer.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hey there,

    This CSS will make the menu float left, but this won’t solve your problem…

    .main-navigation ul {
        justify-content: flex-start;
        }

    Everything moves to a second line because of the padding between menu items:

    .main-navigation ul li {
            margin-left: 0.9em;
            text-decoration: underline;
        }

    This is the lowest you can go to get everything, on one line, but as the screensize gets lower, it will inevitably be on two lines.

    I hope this helps.

Viewing 1 replies (of 1 total)

The topic ‘Menu alignment’ is closed to new replies.