I don't want to wade through your code for errors, sorry. However, if you edit the source from the first example I linked to here (addition highlighted):
Code:
write('<div id="main_marquee_container" style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
It will give you a style hook for the marquee that you can use to position it, and style it and its contents whatever way you like. Examples:
Code:
#main_marquee_container {
left:5px; /* Container is already position relative */
}
#main_marquee_container img {
border:none;
}
There are also other styles in the code, most of which are either required for the marquee to operate, and/or configured in the script. You can also always just place a container around the script and position the container.
Bookmarks