I am trying to fix my vertical navigation on the left side of my site.
$(document).ready(function(){
$(window).scroll(function(){
var border = 150;
if($(window).scrollTop() >= border){
$("#box_CATEGORIES").css({
'position' : 'fixed',
'top' : '0'
});
}
if($(window).scrollTop() < border){
$('#box_CATEGORIES').removeAttr('style');
}
})
});
This worked first fine but now I changed the height of my site in 100%
because i want the footer always on bottom of the site.
And because of that ( I think ) the code doesnt work anymore.. :( any help?