PDA

View Full Version : Fading Scroller--Adjust Box?


msualumni
08-09-2006, 07:32 AM
1) Script Title:
Fading Scroller
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamicindex2/fadescroll.htm
3) Describe problem:
Is it possible for me to change the appearance of the box? For example I'd like to make the lines thicker.

ddadmin
08-09-2006, 06:55 PM
Sure, you can customize the look of the box however way you wish if you're familar with CSS. Find the line:

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:1px solid black;width:'+fwidth+';height:'+fheight+'"></div>');

and change that to something like:

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:4px solid red;width:'+fwidth+';height:'+fheight+'"></div>');

for example.

msualumni
08-09-2006, 09:06 PM
You're the best;) That worked--thanks!