Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Dropdown not working with other nav bar

Home Forums Latest release 1.1.x + Bootstrap 4 addon Dropdown not working with other nav bar Reply To: Dropdown not working with other nav bar

#9144
admin
Keymaster

Sorry for the late reply! Unfortunately, it’s getting harder and harder for me to find any time for the forums. 🙁

You will need to tweak your nav HTML structure (it currently has some missing required classes, etc.). The following should work fine:

<ul class="navbar-nav">
  <li class="nav-item dropdown">
    <a class="nav-link dropdown-toggle" href="#">Dropdown</a>
    <ul class="dropdown-menu">
      <li><a class="dropdown-item" href="#">Link</a></li>
    </ul>
  </li>
</ul>