The script assumes that an explicit width will be defined for each scroller as part of the global CSS. To get the script to try and determine the width dynamically, try finding the below line inside scroller.js:
Code:
this.tickerdivwidth=this.tickerdiv.currentStyle? parseInt(this.tickerdiv.currentStyle["width"]) : this.tickerdiv.offsetWidth //IE has trouble getting offsetWidth while page is loading, so use global CSS value instead
and change that to:
Code:
this.tickerdivwidth=this.tickerdiv.offsetWidth
Bookmarks