Hi all,
New site that needs different footers on different pages, so rather than create a footer I’m using a number of Global Blocks as ‘fake footers’ as necessary. WordPress page templates are set to “No Container, Header, No Footer”
Everything looks fine in Cornerstone, but the live site has an unlimited white space under the ‘footer’. If you scroll, there’s also an unlimited white space above the header.
My first thought was the problem is due to the custom Javascript I’ve added that changes menubar background color on scroll:
jQuery( function($) {
$(window).scroll(function(){
if ( $(this).scrollTop() <= 0) {
$('.x-navbar').removeClass('x-navbar-fixed-top');
}
});
});
However when I remove that .js the problem is still there.
Could you please take a look and give me your thoughts? Site is still in development, so not live. I’ve included login creds in the Secure Note.
Thanks in advance