Strange Float Bug

Associate
Joined
20 Aug 2003
Posts
2,446
Location
London
Hi,

I got this strange bug, when I click the link (newsletter) it floats the browser to the top left hand corder of the screen when the browser is not filling the screen.

I had to fix few float/margin bugs in the IE6 for the http://www.winston.nl website.
If you click the link (newsletter) under Club with your browser resized, so it doesn't fill the screen.

Office computer with WinXP was fine and also friend tested on Mac (FF) it was fine.

I'm using WinXp SP2, 1680x1050" LCD.
 
If it was jquery, it should affect all the links.

Could this be the problem?

<script language="JavaScript" type="text/javascript">
function maximizeWindow() {
if (parseInt(navigator.appVersion)>3) {
if (navigator.appName=="Netscape") {
if (top.screenX>0 || top.screenY>0) top.moveTo(0,0);

}
else {
top.moveTo(-4,-4);
}
}
}
maximizeWindow() ;
</script>

I hate working on other people's code :( .... can't change anything until i get to the office tomorrow.
 
Back
Top Bottom