Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a basic full page width layout and navbar at the top.

I would like to prevent the navbar to collapse on browser resize, so basically the navbar always stays fixed 40px height... just like the navbar at google.com :)

here is a demo:

http://jsfiddle.net/yafXd/1/

http://jsfiddle.net/yafXd/1/embedded/result/

Thanks!

<div class="navbar navbar-inverse navbar-static-top">
  <div class="navbar-inner">
    <div class="container1">
      <a class="brand" href="#">Project name</a>
        <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>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#contact">Contact</a></li>
          <li><a href="#contact">Contact</a></li>
        </ul>
    </div>
  </div>
</div>

<div class="container-fluid">

  <h1>Bootstrap starter template</h1>

  <p>would like to get main navbar to be single line only</p>

</div>

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.