I found a solution for old.htm and player.htm but the script that I used below for these two pages did not work for winner.htm. This is because I used percentages to define the position of the div. Also for the div on that page I define its position from right and top instead of the usual left and right.
Code:
<html>
<head>
<title>Floating Div (Bottom Left)</title>
</head>
<body bgcolor="#000000">
<!-- ********************************************************* -->
* You may use this code for free on any web page provided that
* these comment lines and the following credit remain in the code.
* BottomLeft Floating Div from http://www.javascript-fx.com
******************************************************** -->
<div id="divStayBottomLeft" style="position:absolute">
<img src="javascriptfx.gif"/>
</div>
<script type="text/javascript">
function JSFX_FloatBottomLeft()
{
var startX = 10, startY = 50;
var ns = (navigator.appName.indexOf("Netscape") != -1);
var d = document;
function ml(id)
{
var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
if(d.layers)el.style=el;
el.sP=function(x,y){this.style.left=x+"px";this.style.top=y+"px";};
el.x = startX;
el.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
el.y -= startY;
return el;
}
window.stayBottomLeft=function()
{
var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
fblObj.y += (pY - startY - fblObj.y)/8;
fblObj.sP(fblObj.x, fblObj.y);
setTimeout("stayBottomLeft()", 40);
}
fblObj = ml("divStayBottomLeft");
stayBottomLeft();
}
JSFX_FloatBottomLeft();
</script>
<!-- ********************************************************* -->
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
<!-- ********************************************************* -->
</body>
</html>
Bookmarks