Hi there,
Maybe it’s due to connectivity in your end? If that’s the case, maybe we can re-render it after few seconds. Please add this code to your global custom javascript
jQuery( document ).ready( function( $ ) {
function re_render_it() { $(window).resize(); }
re_render_it();
setTimeout ( function() { re_render_it(); }, 3000 );
window.load ( re_render_it() );
} );
Just change the 3000 (3seconds) to your preferred value. Please note that there is no problem on our end, so this code is not a fix and may not work properly as I can’t directly check it on your side.
Thanks.