twitter bootstrap 3 - How can i have multiple Navbars in a page -
i building cms editor , 1 of things can customized text appearing in navbar. having problem showing 2 navbars. examples have seen multiple navbars 1 below other , not need.
i need first navbar editor's own navbar, while second navbar somewhere below first navbar not directly below it.
you have remove navbar-fixed-top
second nav
html this
<div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a class="brand" href="#">project name</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="active"><a href="#">home</a></li> <li><a href="#about">about</a></li> <li><a href="#contact">contact</a></li> </ul> </div><!--/.nav-collapse --> </div> </div> </div> <div class="container"> <h1>conent</h1> <p>use document way quick start new project.<br> message , barebones html document.</p> </div> <!-- /container --> <div class="navbar "> <div class="navbar-inner"> <div class="container"> <div class="nav-collapse collapse"> <ul class="nav"> <li class="active"><a href="#">home</a></li> <li><a href="#about">about</a></li> <li><a href="#contact">contact</a></li> </ul> </div><!--/.nav-collapse --> </div> </div> </div>
Comments
Post a Comment