1 2 3 4 5 6 7 8 9 10 | jQuery(document).ready( function (){ var header=jQuery( "header .fusion-header" ); var headerHeight=0; var shouldWrite=1; jQuery(window).on( "scroll" , function (){ headerHeight=header.height(); console.log(headerHeight); if (shouldWrite && headerHeight!==undefined){ jQuery( "#headerjumpfixer" ).html( ".fusion-header-wrapper.fusion-is-sticky{padding-top:" +headerHeight + "px}" ); shouldWrite=0;} }); jQuery(window).on( "resize" , function (){shouldWrite=1;}); }); |
< style id = "headerjumpfixer" >.fusion-header-wrapper.fusion-is-sticky{padding-top:88px}</ style > |
Leave a Reply