I started to use Bootstrap. Right now I am looking for a navbar in bootstrap here. The side navbar html and JavaScript I tried to take (the fixed side navbar see it in the l
If you're looking to add the fixed sidebar like bootstrap uses for their docs, like noted here http://getbootstrap.com/javascript/#affix, try this:
Add and add the javascript at the bottom of your page: From there, you'll want to adjust the height at which you want it to lock by adjusting the 'top' elements. For example: FYI, I would suggest a more new title for your post, perhaps "Fixed/sticky navigation with bootstrap." instead of "easy way navbar bootstrap" (just my opinion)id="foo" data-spy="affix" data-offset-top="100" data-offset-bottom="10"
to the
you want to lock in place upon scroll.