Ninja
Seriously, if you cant help, pass it over to someone else that can help. Of course its possible, i managed to fix it my self by just adjusting the code a little.
Solution, here you go!
From
#jak2-loading {
background: url(ajax-loading.gif) center bottom no-repeat #91D0F2;
border-radius: 3px;
color: #fff;
display: block;
height: 50px;
font-weight: bold;
left: 50%;
margin-left: -200px;
padding: 10px 0;
position: fixed;
top: 50px;
text-align: center;
width: 400px;
z-index: 999;
}
To
#jak2-loading {
background: url("ajax-loading.gif") center no-repeat #91D0F2;
border-radius: 3px;
color: #fff;
display: block;
height: 100%;
font-weight: bold;
padding: 360px 0;
position: fixed;
top: 0px;
text-align: center;
width: 100%;
z-index: 999;
opacity: 0.95;
filter: alpha(opacity=95); /* For IE8 and earlier */
}