I\'m migrating to bootstrap 3.0.0 and I\'m having issues with an affixed menu to the left: as soon as it becomes affixed (after 10px scroll), its width changes. In this fiddle i
I had the same problem and fixed with this:
$(window).resize(function () { $('#category-nav.affix').width($('#content').width()); });
basically in an event of resize I calculate the content div's width and set the width of affixed element to that.