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: Mega menu in bootstrap 4 issues

Home Forums Latest release 1.1.x + Bootstrap 4 addon Mega menu in bootstrap 4 issues Reply To: Mega menu in bootstrap 4 issues

#3761
scot
Participant

One more note- I verified that the smartmenus bootstrap 4 plugin breaks the dropdown toggles in bootstrap 4 beta 2 when they are UL’s instead of default bootstrap DIV’s.

That is, this drop down won’t toggle, it follows the href=”#” instead:


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

However this one, basic bootstrap, does toggle as expected:


<li class="nav-item dropdown">
   <a href="#">Dropdown</a>
   <div class="dropdown-menu">
      <li>...</li>
   </div>
</li>