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.

scot

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in 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>
    
    in reply to: Mega menu in bootstrap 4 issues #3760
    scot
    Participant

    One thought- is it possible that things are different because your bootstrap plugin is based on beta 1 and now beta 2 (4.0.0-beta.2) is in use?

Viewing 2 posts - 1 through 2 (of 2 total)