@Dream41 Bunu buldum ama hocam nereye ekliyceğz temada ?
Kod:
$(function(){
// Check the initial Poistion of the Sticky Header
var stickyPanelTop = $('#panel').offset().top;
$(window).scroll(function(){
if( $(window).scrollTop() > stickyPanelTop ) {
$('#panel').css({position: 'fixed', top: '0px'});
} else {
$('#panel').css({position: 'relative', top: '350px'});
}
});
});
