Is it possible to make sidebar navigation stay always visible on scroll in fluid layout? For example here - http://twitter.github.com/bootstrap/examples/fluid.html
|
Yes, simply create a new fixed class for your sidebar and add an offset class to your content div to make up for the left margin, like so: CSS
Demo: http://jsfiddle.net/U8HGz/1/show/ Edit here: http://jsfiddle.net/U8HGz/1/ Update Fixed my demo to support the responsive bootstrap sheet, now it flows with the responsive feature of the bootstrap. Note: This demo flows with the top fixed navbar, so both elements become CSS
HTML
minor note: there is about a 10px/1% difference on the width of the fixed sidebar, its due to the fact that since it doesn't inherit the width from the span3 container div because it is fixed i had to come up with a width. It's close enough. And here is another method if you want to keep the sidebar fixed until the grid drops for small screen/mobile view. CSS
|
|||||||||||||||||
|
|
this will screw up the responsive Webdesign. Better wrap the fixed sidebar in a media query. CSS
HTML
Now the sidebar is only fixed, if the viewpot is bigger then 768px. |
|||
|
The latest Boostrap (2.1.0) has a new JS "affix" feature specifically for this type of application, FYI. |
|||||||
|
|
I started with Andres' answers and ended up getting a sticky sidebar like this: HTML:
CSS:
JS/jQuery:
I'm assuming I also need JS to update the 'sidebarwidth' variable when the viewport is resized. |
|||
|
|
|
Very easy to get fix nav or everything tag you want. All you need is to write your fix tag like this, and put it in your body section
|
||||
|
|