SOLVED: Sub Navigation issue

Bricks Version: 1.1.3
Browser: Chrome 90
OS: macOS / Windows / Linux / etc.
URL: (https:/www.wordpress.auxilio.nl)

Hi,

There is a issue in the sub navigation. When you go to academy you see 4 pages, but one is more to the right like it is a parent of Triage opleidingen. But it is set correctly in menu.

When I change the order, the same issue stays. It is not the page but the place that has issues.

How can this be solved?

Hi Anushka,
this is caused by the following css:

#menu-top-navigatie li:nth-last-child(3) {
    margin-left: 150px;
}

If you change your selector to the following, the margin will only be applied to the main menu, not to the submenu.

#menu-top-navigatie .bricks-nav-menu li:nth-last-child(3) { ... }

Best regards,
timmse

Hi Timmse,

Thank you, it is showing correct now.