Bootstrap Docs Sidebar Explained

Do you really want to make a side navbar look just like the one from the Bootstrap Documentation pages? Then this is the article for you.

In addition to really liking the bootstrap library, I have to say that I really enjoy the presentational style of their documentation page. I think it’s a great idea to show off the big picture of a document, while automatically expanding each section when appropriate. It’s especially helpful for long documents that require a lot of scrolling. Unfortunately, they don’t specifically outline how their documentation pages are put together. But since they’re just delivering HTML/CSS/JS, we can reverse engineer how they put it together. Here are the results of dissecting Bootstrap’s Doc’s side nav bar.

Simple Content

This really works best with some content to scroll through, so let’ just start by making a bunch of blocks with unique ID tags, that are nested into sections, that we can visually see.

Here’s how:
Create a few blocks that look like this. Copy and paste it, but every time you see the letter A, replace it with B, C, and so on.

<section id="GroupA" class="group">
    <h3>Group A</h3>
    <div id="GroupASub1" class="subgroup">
        <h4>Group A Sub 1</h4>
    </div>
    <div id="GroupASub2" class="subgroup">
        <h4>Group A Sub 2</h4>
    </div>
</section>

Then style the blocks to give them a little bit of spacing. This is just so we don’t have to wade through hundreds of lines of lorem ipsum (yuk!).

.group {
    background: yellow;
    width: 200px;
    height: 500px;
}
.group .subgroup {
    background: orange;
    width: 150px;
    height: 200px;
}

Simple Layout

Now we need to create a two column layout for our page. We can put the sample body content on the right and the navbar on the left. We can do this with the Bootstrap Grid System, by placing both columns inside of a div with class='row' and specifying the column widths for all devices with col-xs-*. Finally when we scroll down, we want the content to freely scroll, but have the navigation bar remain in the same place, so we’ll use position: fixed to pin it to the top. It should look something like this:

<div class="row">
    <!--Nav Bar -->
    <nav class="col-xs-3">
        <div class="fixed">
            Nav Placeholder<br/>
            Stays on Top!
        </div>
    </nav>
    <!--Main Content -->
    <div class="col-xs-9">
        <section id="GroupA" class="group"></section>
        <section id="GroupB" class="group"></section>
        <section id="GroupC" class="group"></section>
    </div>
</div>

Simple Navlist

Before we even add any bootstrap, we need a bare bones list of links that will navigate to content on the page. This provides a nice tree structure, but no formatting. The links have bulky bullets in front of them and are very brightly colored.

<ul id="sidebar">
    <li>
        <a href="#GroupA">Group A</a>
        <ul>
            <li><a href="#GroupASub1">Sub-Group 1</a></li>
            <li><a href="#GroupASub2">Sub-Group 2</a></li>
        </ul>
    </li>
    <!-- Same for Group B & C -->
</ul>

Converting List to Nav

In order to make the links look more like navigation controls, and less like a list of groceries, we can use the set of Nav classes provided by Bootstrap. In order to use any nav class, you must also attach the .nav base class to that element as well. To make sure the list stays vertical, we want to also add the class .nav-stacked to each ul element.

<ul class="nav nav-stacked fixed" id="sidebar">
    <li>
        <a href="#GroupA">Group A</a>
        <ul class="nav nav-stacked" >
            <li><a href="#GroupASub1">Sub-Group 1</a></li>
            <li><a href="#GroupASub2">Sub-Group 2</a></li>
        </ul>
    </li>
    <!-- Same for Group B & C -->
</ul>

Let’s pause to look at just these changes because a lot has changed visually even though we haven’t added much code. The set of nav classes help strip out some of the default formatting associated with unordered lists and instead renders the links much like menu bars. The elements now all align all the way on the left because .nav sets padding-left: 0;. We’ve removed the underline with text-decoration: none;, removed some of the list formatting with list-style: none;, and softened the colors a bit with color: #428bca;. The nav-stacked floats all the elements to the left so they ‘stack’ on top of each other.

Formatting the Nav Bar

The final change to the markup is just to add the class bs-docs-sidebar to the top nav column div to help identify it in CSS. We can do the rest in CSS and JavaScript.
First, let’s give the navbar a little breathing room by giving it margins on the top, left, and bottom:

/* sidebar */
.bs-docs-sidebar {
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

Next, we’d like to be able to apply different formating to parent level links and child links. CSS does not currently have a Parent Selector which could be used to differentiate the top level links with those nested below them. Instead, we can apply a style to all links inside of bs-docs-sidebar and then override that style for any list items that are children of two ul.nav elements.

/* all links */
.bs-docs-sidebar .nav>li>a {
    color: #999;
    padding: 4px 20px;
    font-size: 13px;
    font-weight: 400;
}

/* nested links */
.bs-docs-sidebar .nav .nav>li>a {
    padding-top: 1px;
    padding-bottom: 1px;
    padding-left: 30px;
    font-size: 12px;
}

For all links we’ll apply a grey color schema and a font-weight of 400. All links will be padded in at least 20 pixels, but those nested under two .nav elements will be indented 30px. Top level links will be slightly larger at 13px. And nested links will have much less padding on the top and bottom.

Using Scrollspy

To do the rest of the styling we’ll need to know whether a link is active. In order to do this, we can use a scroll spy on the page which will apply the .active class to the navigation list whenever a given element is scrolled into view.
Scroll spy is called on the element whose scrolling activity you want to monitor. Since you will probably be scrolling through the entire page, this should go on the body element.
The target of scrollspy is:

the ID or class of the parent element of any Bootstrap .nav component.

So we’ll target the #sidebar by passing in it’s parent: .bs-docs-sidebar

The offset represents the pixels to offset from top when calculating position of scroll. We’ll give it a running start of 40, so it can find the first nested child item of each group so that will be set as active as well.

$('body').scrollspy({
    target: '.bs-docs-sidebar',
    offset: 40
});

You are still in charge of styling any elements you would like to display. Scroll spy merely adds the active class. As of right now, it won’t look like it’s doing anything because we haven’t styled the elements yet. As a placeholder, just to see it working, let’s color active links purple. We’ll replace this with more sophisticated stuff next.

.bs-docs-sidebar .nav>.active>a {  color: #563d7c; }

Whenever an element is set to active (due to scrollspy) or is hovered or focused, we’ll apply some styles to the anchor. We’ll color it purple. We’ll make sure that it doesn’t have an underline or a grey box highlighting it. And we’ll add a purple flag on the left to help identify which items are active. To do this, we’ll apply a 2 pixel border to the left of the element.

Note: Because of the way the CSS box model works, when we add a 2px border to the left, the entire element shifts 2 pixels to the right, displaced by the border that previously took up zero pixels. One way to handle this is to shorten the padding we added by 2px every time the element is active. But I think a cooler trick is to just start off with a transparent 2px border so the object does not get resized when adding a colorful border

/* all links */
.bs-docs-sidebar .nav>li>a {
    /*add trasnparent border */
    border-left: 2px solid transparent;
}
/* active & hover links */
.bs-docs-sidebar .nav>.active>a, 
.bs-docs-sidebar .nav>li>a:hover, 
.bs-docs-sidebar .nav>li>a:focus {
    color: #563d7c;                 
    text-decoration: none;          
    background-color: transparent;  
    border-left: 2px solid #563d7c; 
}

Let’s also make active parent links have a very thick weight, and child links less so.
Remember: we’ll use the style we want for parent objects on all the links and then override it for nested links.

/* all active links */
.bs-docs-sidebar .nav>.active>a, 
.bs-docs-sidebar .nav>.active:hover>a,
.bs-docs-sidebar .nav>.active:focus>a {
    font-weight: 700;
}
/* nested active links */
.bs-docs-sidebar .nav .nav>.active>a, 
.bs-docs-sidebar .nav .nav>.active:hover>a,
.bs-docs-sidebar .nav .nav>.active:focus>a {
    font-weight: 500;
}

Collapsing Inactive SubGroups

One of my favorite features of the Bootstrap Navbar is that it automatically collapses subgroups that are not currently in view. This allows a lot of information to be available, but prevents a lot of noise when it’s not in use. To do this we’ll use the active flag on the parent group. To hide all subgroups, we’ll set display:none to all ul.nav elements that are children of other .nav elements. This will collapse all subgroups. Then we need to expand the active group by looking for a parent level nav with an .active child and set display:block on it’s child ul. So it will look like this:

/* hide all (inactive) nested list */
.bs-docs-sidebar .nav ul.nav {
    display: none;           
}
/* show active nested list */
.bs-docs-sidebar .nav>.active>ul.nav {
    display: block;           
}

And behave like this:

Wrap Up

So that’s it. You can have fun applying other styles as well. Bootstrap uses Affix to lock the navbar into place after scrolling past the header.
Also, they use media queries to collapse the navbar if the screen is below a certain size like this:

@media screen and (max-width: 500px){
    .bs-docs-sidebar {
        display:none
    }
}

The impetus for this article was actually a spice website that I was making to catalog my home spices. It uses the bootstrap side bar when space allows, but then converts into a top navbar for smaller screens. You can view the final page here:

http://kylemitofsky.com/Spices/

And you you can browse the source code here if you’re interested in how anything is done:

https://github.com/KyleMit/Spices/tree/gh-pages

Here’s the final fiddle. Feel free to play around with it, fork it, or leave me a comment below.

Update with Top NavBar:

Here’s a quick rundown of how to add a horizontal navbar to the example. The primary difficulty in adding any fixed position navbar to the top of the window is it will break all your anchor tags like so:

The first trick when adding a navbar is to displace everything on the page by the same number of pixels, that way nothing starts off hidden underneath the navbar. The standard implementation (even listed in the docs) is to just offset the entire document by placing a top margin or padding on the body element:

body { margin-top:50px; }

But as you can see from the previous example, this doesn’t solve the issue.

Why is that?

For more information, you can see my Stack Overflow answer to the question When navigating to #id, element is hidden under fixed position header, but here’s the gist of it. When the browser is told to navigate to a fragment identifier (#ID):

your browser always wants to scroll your anchor to the exact top of the window. If you set your anchor where your text actually begins, it will be occluded by your menu bar.

One way to overcome this is to make sure the content of your anchor element starts well after the element begins. To do this, we’ll need a basic understanding of the CSS box model. We’ll give the element some extra height at the top by setting the padding-top to about 50px, but since we don’t actually want each anchor element to have 50 pixels of overhead, we’ll also set the margin-top the the same amount, but negative.

Here’s an example, that hopefully makes the point more concrete:

By adding this CSS

.group, .subgroup {
    padding-top: 50px;
    margin-top: -50px;
}

We make the element grow 50 pixels taller, but ensure that the content stays in exactly the same place. Here’s a look at the example from the chrome developer tools:

PaddingMarginOffset

Now when we scroll the top of the element to the top of the window, it will start 50 pixels before the content. Here’s a full example with a working top navbar

Update with Scrollable Navbar

To make the sidebar scrollable, you can add the following CSS:

.bs-docs-sidebar > ul {
    overflow-y: auto;
    height: 100%;
}

When content overflows it’s container, there are a couple different ways to handle it in css:

overflow: visible | hidden | scroll | auto

The default is to have the content remain visible. However, this poses problems when using an element with position:fixed because you cannot simply scroll through the window to bring the visible element into view.

You can use overflow: scroll to add a scrollbar to the div, but this will always be visible, even if unnecessary, and scrollbars should be avoided unless absolutely necessary. The better option is to use overflow: auto which will provide a scrollbar only if necessary. Since we’d rather wrap long horizontal text than scroll it, we’ll only apply this to the y-axis by using overflow-y: auto.

You’ll notice once this is in place it doesn’t do anything yet. That’s because we need to tell the container how large it is so it knows when any of its contents are taking up more space that it can provide. As a test, you can just throw in height: 100px and you’ll notice that the entire contents fits into a box that is 100px tall and you can scroll to get to the rest of it.

However, we don’t necessarily know how much space we want to allow the sidebar to consume. It’s going to depend on the space available in the window and how you’re site is laid out. In the simplest form, if we alloted the entire screen height to the sidebar, we could use height: 100%.

Note: Whenever you use height: 100% in CSS, you have to next ask yourself, “100% of what?” Often this is the parent element, but fixed position elements break the layout so 100% will automatically refer to the window size. If your sidebar does not start at the top of the window, 100% height will extend past the bottom of the screen and make the scrollbar difficult to manage. You can choose a height <100% or apply your own padding to the element, instead of its parent.

Here’s a demo with a scrollable sidebar:

You can look at my spice project for a demo in production using a scrollable sidebar

Update with Affix

In the spirit of the Bootstrap’s own use of their sidebar, you can use affix to help place the location as you scroll through the page. You’ll just need to add the affix to your sidebar like this:

$("#sidebar").affix({
    offset: {
      top: 60
    }
});

And then set some styling when the .affix class is in place (bootstrap will automatically add position:fixed so we just need to set the height:

#sidebar.affix {
    top: 20px;
}

Here’s a demo with an affixed sidebar:

48 comments:

  1. Kyle, thank you for the great tutorial! I do have one question that is particular to my design.

    I am using a fixed navigation menu at the top of my page. The scrollspy offset allows me to trigger the .active class at the correct moment when scrolling, and that works just fine. However, when I click on any link in the .sidebar, it jumps to a position on the page, but ignores the offset. Without that offset, the position it jumps to is hidden under my fixed navigation menu, because it is calculated from the top of the window.

    Is there any way to apply an offset when clicking on the link in the .sidebar?

    Thanks!
    -RG

    ReplyDelete
    Replies
    1. Hi Richard, thanks for your comment.

      You're not alone! This is a persistent problem for fixed headers on any website, either through bootstrap or otherwise. Essentially, the problem is that when the browser scrolls to anchor tags, it will always try to scroll the top of the element to the very top of the window. Traditionally, there are two ways of handling this, catch any navigation to a anchor tag and handle it manually, or trick the browser into thinking the element is taller than it really is. I prefer the second one as I think it gracefully degrades better. I updated my post at the bottom with more information about how to do it. Basically you want to add a top margin and top padding and have them offset each other as I detailed in this Stack Overflow question: http://stackoverflow.com/q/18948440/1366033

      Delete
    2. Thanks, Kyle.

      I see how this solution will work perfectly in some instances. Unfortunately, my sidebar is not located directly below the fixed navigation menu. It's actually placed a bit further down the page. So, when using this margin/padding psych-out, the background of the affected sections is running into the content above it. In your jsFiddle, the background is simply hidden under your fixed nav. I suppose I can get away with it on my page by removing any background color to the sections I'm tweaking. I'll fool around with it and see what I can come up with.

      Thanks again.

      Delete
    3. Hey Richard,
      Can you post an example of your particular case on jsFiddle? You might want to try asking about it on somewhere like Stack Overflow as well.

      Delete
  2. Thank you so much! It works perfectly fine and I like how it looks.
    Thanks!

    ReplyDelete
  3. Hi Kyle,

    Thank you for a great guide. It is really helpful. I have a question however.

    I am trying to add groups with no sub groups. However, the scroll spy doesn't pick up those.

    Any advice for getting around this issue?

    ReplyDelete
    Replies
    1. The same issue/bug is happening for me as well. Any tips to solve?

      Delete
    2. Hi Johannes,
      Thanks for identifying that issue. So the problem was I was not following the docs! Scrollspy has to target the parent of the unordered list that you are looking to update, not the list itself. This allowed it to work for child group items, but not the parent group.

      I've updated the code sample with these changes

      You can see a demo of a childless group in this fiddle.

      Delete
  4. What if you have a lot groups, or items within a group in your side nav? So many that the nav needs to scroll to fit on the screen. It would be great to see how to modify the last example to cover this scenario.

    Thanks!

    ReplyDelete
    Replies
    1. Hi Dan, I've added an Update with a Scrollable Navbar. The trick is to use:
      overflow-y: auto;
      height: 100%;

      Delete
  5. Agree with Dan. I cannot figure out how to account for a navbar that needs to scroll as well due to overflowing content. This would be very helpful!

    ReplyDelete
    Replies
    1. This was a super cool tutorial though, so thank you! Here is what I am trying to replicate:
      https://wit.ai/docs/quickstart

      Delete
    2. Hi Joel, thanks for the comment. I replied to Dan's note as well, but I've
      added an Update with a Scrollable Navbar.

      Delete
  6. Hi Kyle,

    Thank you for the excellent tutorial. I noticed that when adding the "affix" functionality, if the items in my side nav link are long, they cease to wrap when you start scrolling down the page. https://jsfiddle.net/9f3r1nx0/

    Any idea why this may be? I tried to pinpoint the issue, but I'm not having much luck.

    Thank you.

    ReplyDelete
    Replies
    1. Note: I was able to work around this issue by moving the div with the navigation to the right side of the page instead of the left. For my purposes, that is a sufficient workaround.

      Thanks again.

      Delete
  7. Hi !
    Thank you for this great tuto ! Do you have a follow-up tutorial on how to convert the side menu into a top menu when the width of the windows is < 500 px ?
    Thanks !
    Laurent

    ReplyDelete
  8. Awesome, thank you a lot for this excelent article!

    ReplyDelete
  9. Hi !
    thank to tutorial,,
    how to hide menu if running on mobile phone????

    ReplyDelete
  10. Thanks for that! Helped a lot!

    ReplyDelete
  11. Fantastic! Thank you! I love the look, I just have one problem. When I scroll to the bottom, the side bar crashes into my footer and site map. I would love to avoid a side scroll bar. Any suggestions? Thanks again in advance.

    ReplyDelete
  12. I had been looking for this tutorial for weeks... Just perfect. Thanks a lot !

    ReplyDelete
  13. Everything is perfect, how would be if I want to take it to the third level:
    Father
    Son
    Grandson
    Thanks

    ReplyDelete
  14. Thank you so much. Very useful and Well explained

    ReplyDelete
  15. Can u provide this tutorial on ASP.NET MVC?

    ReplyDelete
    Replies
    1. Mayank, what value do think that would hold, beyond expanding the same description to another medium?

      Delete
  16. Thank you so much. Very useful and Well explained

    ReplyDelete
  17. Thank you so much Kyle. I'm still working through one issue, but it's specific to using turbolinks so I'm not sure if you would know a solution.

    Everything works perfectly, except the submenu collapses once it's clicked. If I start scrolling it will open back up again, but I'm not sure how to prevent it from collapsing.

    I've confirmed it's caused from turbolinks.

    If anyone has any ideas, I'd very much appreciate it.

    ReplyDelete
  18. This tutorial was MEGA helpful!

    Does anyone know how Wistia gets their nav bar to STAY in place when a link is clicked and the body scrolls to content way down at the bottom for instance? I have this problem where I click a link in the sidebar to content far at the bottom of the page, and my navigation scrolls to that content in the body, my nav disappears until i reach that content and it zips down delayed. It's very strange! https://wistia.com/doc/private-sharing#sharing_video_privately

    ReplyDelete
  19. Asking an incredibly stupid question here...
    Why doesn't this work on codepen, a static install, or even Wordpress? I have never seen this in my life. I am linking to BS resources and jquery within my site, and I am making sure there are no over-riding styles. It's just I have never seen something like this, where it ONLY works in JSfiddle. Am I crazy?

    ReplyDelete
    Replies
    1. Example: https://codepen.io/pixelparlor/pen/aERgYB

      Delete
    2. Hi WebDever / JoSchmo, Each of those platforms might pose slightly separate issues, although the css/js should be runnable anywhere.

      If anything web related isn't working - first check should be console in dev tools. Here's a screenshot of the console errors in the codepen and their fixes:
      https://imgur.com/a/ANWAn

      There were a couple issues here:
      1. You only need the body contents inside the HTML editor - codepen and jsFiddle will insert the rest
      2. You had the JS code in three places, the HTML editor, the JS editor, and the Head tag (settings). Minimally that would guarantee that it ran three times, which isn't what you want, but it was having trouble because it ran before the external JS libraries loaded
      3. Make sure jQuery loads before Bootstrap

      Here's an updated codepen with those issues fixed:
      https://codepen.io/KyleMit/pen/goQKVR

      Delete
  20. Is there any codepen example available that works with BS 4 ? I searched almost all web and couldnt see ..

    ReplyDelete
  21. I haven't played with it yet, but I'll try to get an update in 6-8 weeks for v4 :)

    ReplyDelete
  22. Thanks for sharing this valuable content. In my view, if all webmasters and bloggers made good content as you did, the web will be a lot more useful than ever before. Convert pdf to Doc

    ReplyDelete
  23. This is such a great resource that you are providing and you give it away for free. I love seeing blog that understand the value. Im glad to have found this post as its such an interesting one! I am always on the lookout for quality posts and articles so i suppose im lucky to have found this! I hope you will be adding more in the future... 88카

    ReplyDelete
  24. I am overwhelmed by your post with such a nice topic. Usually I visit your site and get updated through the information you include but today’s blog would be the most appreciable. 토토사이트

    ReplyDelete
  25. Everything is very open with a really clear explanation of the challenges. It was really informative. Your website is very useful. Many thanks for sharing! 바카라

    ReplyDelete
  26. This is a good tip particularly to those fresh to the blogosphere. Brief but very accurate information… Many thanks for sharing this one. A must read post! 토토사이트

    ReplyDelete
  27. I can’t imagine focusing long enough to research; much less write this kind of articlen and good site info for me
    메이저사이트

    ReplyDelete
  28. Everything is very open with a really clear explanation of the challenges. It was really informative. check my web site info for you 먹튀검증추천

    ReplyDelete
  29. , a 26-year-old Londoner, has work
    파워볼ed with words in some limit with respect to her whole vocation: in distributing, a

    ReplyDelete
  30. Much obliged to you for your post, I search for such article along time, today I discover it at long last. this post give me heaps of prompt it is extremely helpful for me. สมัครเว็บ ufabet

    ReplyDelete
  31. I think this is an informative post and it is very useful and knowledgeable. therefore, come check my web site 사설토토

    ReplyDelete
  32. Good to become visiting your weblog again, it has been months for me. Nicely this article that I've been waited for so long. nice info for you 신불자대출

    ReplyDelete
  33. I think your website has a lot of useful knowledge. I'm so thankful for this website.
    I hope that you continue to share a lot of knowledge.
    This is my website.
    힌게임머니상

    ReplyDelete
  34. Much obliged to you for your post, I search for such article along time, today I discover only good site info for you 토토사이트

    ReplyDelete
  35. I think your website has a lot of useful knowledge. I'm so thankful for this website. nice web site info for you 토토커뮤니티

    ReplyDelete