Advertisement
Guest User

z

a guest
Mar 30th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. bodySpacing= function (){
  2. /*Banner Notice start*/
  3. var noticeBanner = $('.notice-banner');
  4. if (noticeBanner.length != 0) {
  5. var noticeBarHeight = noticeBanner.outerHeight();
  6. var mainContent = $('#main-content');
  7.  
  8. mainContent.css('padding-top', noticeBarHeight+'px');
  9. }
  10. /*Banner Notice end*/
  11. };
  12.  
  13. $(window).load(function() {
  14. bodySpacing()
  15. });
  16.  
  17. $(window).resize(function(){
  18. bodySpacing()
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement