Trying to make a sticky banner in the right sidebar on http://lukich.co.nf/laestrella/ But can't figure out how to define it's stop point a few pixels before the red line above footer. Can someone help please. the script:
$(function(){ // document ready if (!!$('#sticky').length) { // make sure "#sticky" element exists var el = $('#sticky'); var stickyTop = $('#sticky').offset().top -100; $(window).scroll(function(){ // scroll event var windowTop = $(window).scrollTop(); if (stickyTop < windowTop){ el.css({ position: 'fixed', top: 50 }); } else { el.css('position','static'); } }); } });