Posts

Showing posts with the label fix header on top

Script for fixed header menu on top of the screen

Hello All, Please use this  script for fix header on top. <!--Css Zilla Script for header fixed---> <script type="text/javascript">     $(window).scroll(function () {       if ( $(this).scrollTop() > 186 && !$('.header_fixed').hasClass('open') ) {         $('.header_fixed').addClass('open');         $('.header_fixed').slideDown();        } else if ( $(this).scrollTop() <= 186 ) {         $('.header_fixed').removeClass('open');         $('.header_fixed').slideUp();       }     });         </script> Live Example on http://paulbennetts.co/