http://www.dynamicdrive.com/dynamici...fadescroll.htm
OK I have a new question about this script. Is there any way to make the border disappear? I don't want the black line around the frame.
http://www.dynamicdrive.com/dynamici...fadescroll.htm
OK I have a new question about this script. Is there any way to make the border disappear? I don't want the black line around the frame.
Last edited by hooloovoo; 03-29-2005 at 06:21 PM.
Simply edit the line:
so the 1px becomes 0 instead:Code:if (ie4||DOM2) document.write('<div id="fscroller" style="border:1px solid black;width:'+fwidth+';height:'+fheight+'"></div>');
This removes the border, and when you want it back, just change 0 again.Code:if (ie4||DOM2) document.write('<div id="fscroller" style="border:0 solid black;width:'+fwidth+';height:'+fheight+'"></div>');
Bookmarks