Get rid of the center tags:
Code:
<tr><td height="288"><center>
<script type="text/javascript">
//new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds)
new pausescroller(pausecontent, "pscroller1", "someclass", 3000)
</script>
</center>
Use this style block instead of the one you have for the scroller (change is in red):
Code:
<style type="text/css">
/*Example CSS for the two demo scrollers*/
#pscroller1{
width: 200px;
height: 80px;
border: 1px solid black;
padding: 5px;
background-color: white;
font-family:verdana,arial,sans-serif;
color:#311808;
font-size:13px;
font-weight:normal;
margin:0 auto;
}
.innerDiv { text-align:center; }
.someclass{ //class to apply to your scroller(s) if desired
}
</style>
Bookmarks