Here is where the content area is styled:
Code:
if (ie4||DOM2)
document.write('<div id="fscroller" style="border:1px solid black;width:'+fwidth+';height:'+fheight+'"></div>');
For example, I got a nice effect by changing it to:
Code:
if (ie4||DOM2)
document.write('<div id="fscroller" style="background-color:lightblue;width:'+fwidth+';height:'+fheight+'"></div>');
However, I then needed to discover the rgb value of the new background color and enter it here in the configuration as the start color:
Code:
var startcolor= new Array(117,216,230); // start color (red, green, blue)
Then it looked pretty good!
Bookmarks