Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ( function( $ ) {
- $( document ).ready( function() {
- var wpadminbar = $( '#wpadminbar' ),
- topBar = $( '#top-header' ),
- headerBar = $( '#main-header' ),
- footer = $( '#main-footer' ),
- topHeight = 0,
- footerHeight = 0;
- if ( wpadminbar.length ) {
- topHeight = topHeight + wpadminbar.height();
- };
- if ( topBar.length ) {
- topHeight = topHeight + topBar.height();
- }
- if ( headerBar.length ) {
- topHeight = topHeight + headerBar.height();
- }
- if ( footer.length ) {
- footerHeight = footerHeight + footer.height();
- }
- if ($('body').hasClass('et_pb_pagebuilder_layout')) {
- $( "#sticker" ).sticky( {
- topSpacing: topHeight,
- bottomSpacing: footerHeight
- } );
- } else {
- $( "#bloomwidget-7" ).sticky( {
- topSpacing: topHeight,
- bottomSpacing: footerHeight
- } );
- }
- } );
- } )( jQuery );
Advertisement
Add Comment
Please, Sign In to add comment