tiwaly adlı üyeden alıntı

CSS

.fixedmenu{
position: fixed;
width: 1000px;
z-index: 999;
top: 0;
}


Javascript

<script>
$(document).ready(function(){
$(window).bind('scroll', function() {
var navHeight = $( window ).height() - 74;
if ($(window).scrollTop() > navHeight) {
$('.navbar-inner').addClass('fixedmenu');
}
else {
$('.navbar-inner').removeClass('fixed');
}
});
});
</script>


Hocam olmadı malesef javascript headere kodum siteyi bozdu açma wordpreste denedim gene olmadı.