Dear Magik.
Try learning a bit of css firstly.
Here's the right code:
Code:
<div style="position:absolute;top:50%;left:50%;margin:-50px 0 0 -100px;">
<script type="text/javascript">
new pausescroller(pausecontent, "pscroller1", "someclass", 3000)
</script>
</div>
But be careful! The parent element also has to be positioned absolute. If it is not positioned absolutely put an absolute positioned div around that all like this:
Code:
<div style="position:absolute;width:500;height:400;">
{ code like before ^ }
</div>
"Width" and "Height" of course can be changed like you want to. "Position:absolute" has to stay like it is without any "top" or "left" attributes because if you do not put them it stays in the normal text float.
good luck!
Max
Bookmarks