Only first link in submenu works in Pro

Site URL: http://7he.40d.myftpupload.com

Header on Home page only enables a click on the first sublink on menu dropdowns.

I’m able to provide login if necessary.

Hey @BRandCompany,

Please add a bottom margin of 40px to your navigation container.

The cause of the issue is because the container of your headline invisibly covers the submenu. You should be using margins to space out the top and bottom containers.

There’s another solution but it’s sub-optimal because it’s not available in the options. You need to override the z-index of the nav container higher than the fixed default which is 1. Add this code in the nav container’s Element CSS.

$el {
  z-index: 2;
}

Hope that helps.

1 Like

Perfect. Thank you!

You are most welcome. :slight_smile:

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