Help with Scroll/Follow Sidebar
used the jquery technique to have a scrolling/following sidebar from css-tricks.com, here is the code if you dont know what im talking about: $(function() { var $sidebar = $("#scroll-menu"), $window = $(window), offset = $sidebar.offset(), topPadding = 15; $window.scroll(function() { if ($window.scrollTop() > offset.top) { $sidebar.stop().animate({ marginTop: $window.scrollTop() - offset.top + topPadding }); } else { $sidebar.stop().animate({ marginTop: 0 }); } }); }); also here is the link http://css-tricks.com/scrollfollow-sidebar/ The only problem that i have with this is that it has an