Sometimes, with bootstrap, you need multiple collapsable Menus.
change the data-taget to an ID
example (mainmenu):
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#mainmenu">
use and ID for your navbar
example (mainmenu):
<div class="collapse navbar-collapse" id="mainmenu">
and do the same with all the other menus that you have with a different ID or a custom/different class.
change the data-taget to an ID
example (mainmenu):
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#mainmenu">
use and ID for your navbar
example (mainmenu):
<div class="collapse navbar-collapse" id="mainmenu">
and do the same with all the other menus that you have with a different ID or a custom/different class.
Comments
Post a Comment