EduardET

Untitled

Feb 28th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. ( function( $ ) {
  3.     $( document ).ready( function() {
  4.         $( window ).on( 'scroll', function() {
  5.             if ( $( '#main-header' ).hasClass( 'et-fixed-header' ) ) {
  6.                 if ( $( 'body' ).hasClass( 'logged-in' ) ) {
  7.                     $( '#main-header' ).css( 'top', 32 );
  8.                 } else {
  9.                     $( '#main-header' ).css( 'top', 0 );
  10.                 }
  11.             } else {
  12.                 $( '#main-header' ).css( 'top', 63 );
  13.             }
  14.         } )
  15.     } );
  16. } )( jQuery );
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment