To display the dropdown correctly, your brand must be a .nav li element. So just add the .brand class to the standard dropdown menu.
<div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="tabbable"> <ul class="nav"> <li class="dropdown"> <a id="drop1" class="dropdown-toggle brand" data-toggle="dropdown" href="#menu"> Brand </a> <ul class="dropdown-menu" role="menu" aria-labelledby="drop1"> <li><a href="#">Action</a></li> </ul> </li> <li> <a href="#" data-toggle="tab">Item</a> </li> </ul> </div> </div> </div>
This will break your brand positioning, but you can fix it with this simple CSS:
.navbar .brand { margin-left: 10px; }
source share