Menu link can't enable it back

How can I enable this menu item I had turned it off but now can get it to work again what am I missing?

Hello @rotation,

Thank you for the details.

Actually, your menu and menu item is fine. You just need to adjust the alignments so that the submenu will display underneath the menu item. It happens because of your custom CSS:

.x-navbar .desktop .x-nav > li ul {
    top: 5px;
}

You will have to update it to this code below to resolve the issue:

.x-navbar .desktop .x-nav > li ul {
    top: 40px;
}

Best Regards.

This worked thanks

You’re welcome!
We’re glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.