unighighimask
New Member
Basic question really. I love the .btn-navbar and it's responsiveness. By default, it will kick in at 940px or below. My question is how do I have just the .btn-navbar active at all times. All I want the user to see is the .btn-navbar to navigate. Here is the code I have now, though I suspect the .js file will need to be tweaked:\[code\]<div class="row-fluid"> <nav class="navbar navbar-static-top navbar-inverse"> <div class="navbar-inner"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="http://stackoverflow.com/questions/14057130/#">Home</a> <div class="nav-collapse"> <ul class="nav"> <li class="active"><a href="http://stackoverflow.com/questions/14057130/#">Home</a></li> <li><a href="http://stackoverflow.com/questions/14057130/#">About</a></li> <li><a href="http://stackoverflow.com/questions/14057130/#">Blog</a></li> <li><a href="http://stackoverflow.com/questions/14057130/#">Portfolio</a></li> <li><a href="http://stackoverflow.com/questions/14057130/#">Resources</a></li> </ul> </div> </div> </nav></div>\[/code\]