That stuff about your body tag may be beyond your control. Even with it looking messy like it does, this worked here. Try replacing your script with this one:
Code:
<script>
/*
Cursor Trailer Text- By Peter Gehrig (http://www.24fun.ch/)
Permission given to Dynamicdrive.com to feature script in it's archive.
For full source code, installation instructions, and 1000's more DHTML scripts,
visit http://dynamicdrive.com
Modified in Dynamic Drive Help Forums by jscheuer1 to work in NS6+ & FF1+
*/
var x,y
var step=20
var flag=0
// Your snappy message. Important: the space at the end of the sentence!!!
var message="Moonifa's Garden! "
message=message.split("")
function iecompattest(){
return (document.compatMode && document.compatMode.indexOf("CSS")!=-1)? document.documentElement : document.body
}
var xpos=new Array()
for (i=0;i<=message.length-1;i++) {
xpos[i]=-50
}
var ypos=new Array()
for (i=0;i<=message.length-1;i++) {
ypos[i]=-50
}
function handlerMM(e){
if ((document.getElementById)&&(!document.all)){
x = e.pageX
y = e.pageY
flag=1
}
else{
x = (document.layers) ? e.pageX : iecompattest().scrollLeft+event.clientX
y = (document.layers) ? e.pageY : iecompattest().scrollTop+event.clientY
flag=1
}
}
function makesnake() {
if ((flag==1 && document.all)||(flag==1 && document.getElementById)) {
for (i=message.length-1; i>=1; i--) {
xpos[i]=xpos[i-1]+step
ypos[i]=ypos[i-1]
}
xpos[0]=x+step
ypos[0]=y
for (i=0; i<message.length-1; i++) {
if ((document.getElementById)&&(!document.all)){
var thisspan = eval("document.getElementById('span"+(i)+"').style")
if (window.innerWidth){
if (xpos[i]>window.innerWidth-30)
thisspan.display='none'
else
thisspan.display='block'
}
thisspan.left=xpos[i]+'px'
thisspan.top=ypos[i]+'px'
}
else{
var thisspan = eval("span"+(i)+".style")
thisspan.posLeft=xpos[i]
thisspan.posTop=ypos[i]
}
}
}
else if (flag==1 && document.layers) {
for (i=message.length-1; i>=1; i--) {
xpos[i]=xpos[i-1]+step
ypos[i]=ypos[i-1]
}
xpos[0]=x+step
ypos[0]=y
for (i=0; i<message.length-1; i++) {
var thisspan = eval("document.span"+i)
thisspan.left=xpos[i]
thisspan.top=ypos[i]
}
}
var timer=setTimeout("makesnake()",30)
}
</script>
Bookmarks