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

#9191
HalianRonaldo
Participant

I was facing the same issue on my site https://essays.uk. You can use the following and I think it’ll help you.

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