<script>
/*
* Author: Ryan Sutana
* Author URI: http://www.sutanaryan.com/
* Description: This snippet add more site functionality.
*/
var _rys = jQuery.noConflict();
_rys("document").ready(function(){
_rys(window).scroll(function () {
if (_rys(this).scrollTop() > 90) {
_rys('#menu').addClass("f-nav");
} else {
_rys('#menu').removeClass("f-nav");
}
});
});
</script>
Bu kodları tagları içerisine ekleyin.
Bunu da css dosyanızın en altına ekleyin.
.f-nav{ z-index: 9999; position: fixed; left: 0; top: 0; width: 100%;} /* this make our menu fixed top */
Bu şekilde bir deneyin fakat çalışmayabilir. Yaptığınızda bildirin bir deneyelim.