after looking at lots of tutorials I cant find a solution for my needs in Bootstrap.
The situation... I have two navbars one displays for tablets and mobiles, the other is for larger devices. The reason I didn't use the collapsing responsive feature is because the larger navbar couldn't really be used for smaller devices.
The issue I am having is that I can't seem to make a tabbed mobile menu with a button. I know how to do it with a collapsible navbar but not with a navbar that is permanently a mobile menu.
Here is the html I am using:
<div class="navbar navbar-default nav-links navbar-fixed-top hidden-md hidden-lg">
<div class="container">
<button class="visible-sm visible-xs navbar-toggle"
data-target="#i-want-this-to-collapse"
data-toggle="collapse" type="button">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="mini-navbar navbar-brand" href="/">
<img src="media/img/nav-logo.png" alt="Driven Car Sales Logo"
class="img-rounded logo-nav mini-navbar" />
</a>
<ul class="nav navbar-nav">
<li><a href="#">Used Cars</a></li>
<li><a href="#">Get Finance</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle"
data-toggle="dropdown">
About Driven<strong class="caret"></strong>
</a>
<ul class="dropdown-menu">
<li> <a href "#">The Team</a></li>
<li> <a href "#">Our Partners</a></li>
</ul>
</div>
</div>
As you can see it doesn't create a tabbed effect any idea what I can do to achieve this?