EduardET

Untitled

Mar 6th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. (function($) {
  3.     $(document).ready(function() {
  4.         function setMenuPoistion(){
  5.         var menuSection = $('.my_menu_section'),
  6.             headerHeight = $('.my_header_section .et_pb_fullwidth_header').outerHeight();
  7.         menuSection.css('top', headerHeight+18);
  8.         }
  9.         setMenuPoistion();
  10.         $(window).resize(function(){
  11.             setMenuPoistion();
  12.         })
  13.        
  14.     });
  15. })(jQuery);
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment