Site logo

Archived topic

Breakdown of items in the second navigation menu

3 replies · Started by Tomasz on March 31, 2021

Viewing posts 1–4 of 4

I want to split items on a second menu in a store. I added the menu using a hook. I have the latest version of GeneratePress.

1

Hi Tomasz,

Try the below CSS, the numberr 3 in this selector li:nth-child(3) makes the 3rd menu item move to the right, feel free to change the number.

.second-nav .main-nav, .second-nav .main-nav > ul {
    flex-basis: 100%;
    display: flex;
}
.second-nav .main-nav > ul > li:nth-child(3) {
    margin-left: auto;
}

Thank you. Of course it works :)

Glad to hear that :)

This archived topic is closed to new replies.