I had the same issue.
An invisible div keep blocking the page.
First, I modified css file. When I put css like below.
.wf-active *,.wf-inactive * {
visibility: hidden;
font-family: FrutigerLTStd55Roman, FrutigerLTStd45Light, Verdana, Arial, Helvetica;
font-weight: normal;
}
I could unblock the page but some letters became invisible.
I deleted this css.
Secondly, I did Jquery coding. When the page is loaded completely, jquery find div and make this disappear.
function PageLoad() {
// find div which is blocking the page.
var t = $('div').filter(function () {
var self = $(this);
return self.css('z-index') == '2000000000' &&
self.css('opacity') == '0.05' &&
self.css('left') == '0px' &&
self.css('top') == '0px' &&
self.css('background-color') == 'rgb(255, 255, 255)';
});
if (t.css("visibility") != "hidden") {
t.css("visibility", "");
t.css("visibility", "hidden");
t.css("position", "absolute");
console.log(document.readyState);
}
}
$(document).ready(function () {
// Chrome browser is okay with window.onload but IE was not.
// so I used thie way.
// when user hover on 'body' or click.
// blocking div will be modified.
$("body").hover(function () {
PageLoad();
});
$("body").click(function() {
PageLoad();
});
});