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

I am using bootstrap on my site and am having issues with the navbar fixed top. When I am just using the regular navbar, everything is fine. However, when i try to switch it to navbar fixed top, all the other content on the site shifts up like the navbar isn't there and the navbar overlaps it. here's basically how i laid it out:

.navbar.navbar-fixed-top
  .navbar-inner
    .container
.container
  .row
    //yield content

i tried to copy bootstraps examples exactly but still having this issue only when using navbar fixed top. what am I doing wrong?

share|improve this question

4 Answers

up vote 47 down vote accepted

Your answer is right in the docs:

When you affix the navbar, remember to account for the hidden area underneath. Add 40px or more of padding to the <body>. Be sure to add this after the core Bootstrap CSS and before the optional responsive CSS.

share|improve this answer
3  
But when you minimizing the window the navbar appears after 40px how should i handle it.. – Astrowalker Aug 30 '12 at 14:44
2  
It appears after 40px probably because you don't "add this after the core Bootstrap CSS and before the optional responsive CSS." – collimarco Nov 14 '12 at 22:24
What if you download the bootstrap and responsive CSS as a single file, as they're provided on the download page? – JerSchneid Dec 20 '12 at 20:35
This answer is true, but it only works well when you make the 40px padding a responsive styling, see Dan or Nick's answer. – tbathgate-va Mar 29 at 18:14

As others have stated adding a padding-top to body works great. But when you make the screen narrower (to cell phone widths) there is a gap between the navbar and the body. Also, a crowded navbar can wrap to a multi-line bar, overwriting some of the content again.

This solved these kinds of issues for me

body { padding-top: 40px; }
@media screen and (max-width: 768px) {
    body { padding-top: 0px; }
}

This makes a 40px padding by default and 0px when under 768px width (which according to bootstrap's docs is the cell phone layout cutoff where the gap would be created)

share|improve this answer
This solution works perfectly. – tbathgate-va Mar 29 at 18:13
Does this solution also go between the core Bootstrap CSS and the responsive CSS imports? I'm still seeing the gap when the window width is less than 980. I'm guessing the later import of the responsive CSS overrides. If I move this solution under the responsive CSS import, then I still get the body padding, plus an extra line in the menu bar. – slothbear May 19 at 3:03
I'm using Twitter Bootstrap 2.3.2. I noticed the doc no longer contains the 40px suggestion, though the need still exists. – slothbear May 19 at 3:09
Eh, the 40px suggestion is still there, it just moved. Sorry for the comment spam. – slothbear May 19 at 3:16

This issue is known and there's a workaround in the twitter bootstrap site:

When you affix the navbar, remember to account for the hidden area underneath. Add 40px or more of padding to the <body>. Be sure to add this after the core Bootstrap CSS and before the optional responsive CSS.

This worked for me:

body { padding-top: 40px; }
share|improve this answer
5  
But when you minimizing the window the navbar appears after 40px how should i handle it.. – Astrowalker Aug 30 '12 at 14:47
yes, this solution doesn't work well on mobile screen sizes. In fact in wide-screen mode on my phone it basically renders the site useless. – tbathgate-va Mar 29 at 18:11

I put this before the yield container:

<div id="fix-for-navbar-fixed-top-spacing" style="height: 42px;">&nbsp;</div>

I like this approach because it documents the hack needed to get it work, plus it also works for the mobile nav.

EDIT - this works much better:

@media (min-width: 980px) {
  body {
    padding-top: 60px;
    padding-bottom: 42px;
  }
}
share|improve this answer
1  
Your edit answer works perfectly. – tbathgate-va Mar 29 at 18:11

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.