Results 1 to 3 of 3

Thread: Fading Scroller--Adjust Box?

  1. #1
    Join Date
    Jul 2006
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Fading Scroller--Adjust Box?

    1) Script Title:
    Fading Scroller
    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...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.

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Sure, you can customize the look of the box however way you wish if you're familar with CSS. Find the line:

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

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

  3. #3
    Join Date
    Jul 2006
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You're the best That worked--thanks!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •