Hi
My website looks wrong when viewed in 800 by 600 screen resolution, but only in IE.
In Netscape and Mozilla it looks fine. I was told to use this js script but it didn't make any difference, does anyone know how to fix this problem?
Here is my url
http://www.skiskool.com/
Thanks
java script code
//reload if NN4 resized
function ResizeReloadNN4(init)
{
if (init==true) with (navigator)
{
if (document.layers)
{
pageW = innerWidth;
pageH = innerHeight;
onresize = ResizeReloadNN4();
}
}
else if (innerWidth != pageW || innerHeight != pageH)
{
history.go(0);
}
}
ResizeReloadNN4(true);