First off it is a wonder the script works at all. It doesn't in FF, and it is supposed to. Anyways, you have two body tags on your page. A big no no. You also have two separate onload events, another no no. To fix these, change the first body tag, that now looks like so:
HTML Code:
</HEAD>
<body>
<div id="tempholder"></div>
to this:
HTML Code:
</head>
<body bgcolor="black" onload="CSScriptInit();runmikescroll();">
<div id="tempholder"></div>
Remove this line from Mike's DHTML scroller script (the part on the page, thankfully):
Code:
window.onload=runmikescroll
And remove this other body and associated erroneous tags completely:
HTML Code:
</body>
</html>
<BODY BGCOLOR=BLACK ONLOAD="CSScriptInit();">
Now we are ready to go to work on your question. Find this line (it is just above where that last bit we removed was, and just after the script):
HTML Code:
<div id="placeholder" style="position:relative; width:420px; height:32px;"> </div>
Change it to this:
HTML Code:
<center><div id="placeholder" style="position:relative; width:420px; height:32px;top:30px;"> </div></center>
Notice the top:30px; part I added, that gets the scroller into a better position vertically, I think. The higher this number, the lower down the page the scroller will appear.
Bookmarks