Search code examples
twitter-bootstraptwitter-bootstrap-3sidebaraffix

Bootstrap affix sidebar issue


I have a problem with my website project. I want to make affix with my #sidebar, based on: this tutorial, but it's still not working...

What's wrong ?

website xxx


Solution

  • You haven't the <header> tag, try to put the first part of the page into it.

    $('#sidebar').affix({
        offset: {
            top: $('header').height()
        }
    }); 
    

    This code read the height of the <header> container and start the affix at that height. In alternative, you can put the header in a div with class or id and use $('.headerclass').height() or $('#headerid').height().