Thanks Thai!
it seems to work… but the grid loads very slowly. So, in some point of the process, you can see the footer higher than the bottom and a blank space below it (please see the attached screenshot below).
Can it be due to my previous JS configuration? Before, I added a code in order to leave the footer fixed at the bottom. This is my whole Js code:
(function($){
$(window).on(‘load resize’, function(){
var H = $(window).height(),
W = $(window).width();
if( W > 980 && H > $(’#top’).height() ){
$(’.x-colophon.bottom’).addClass(‘bottom-fixed’);
} else {
$(’.x-colophon.bottom’).removeClass(‘bottom-fixed’);
}
});
jQuery(document).ready(function($) {
setTimeout(function(){
$(window).trigger(‘resize’);
}, 1000);
});
