Results 1 to 3 of 3

Thread: Translucent scroller

  1. #1
    Join Date
    Jun 2008
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Translucent scroller

    1) Script Title: Translucent Scroller

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...centscroll.htm

    3) Describe problem:
    I'm using the Translucent Scroller from the link above , I have placed it inside of a table and it works great in Firefox ,but in IE it shows only 1/2 of the messages (in width)., with them being shoved to the right of the box.
    I can make them all move to the left but I want it to show as it does in Firefox for both browsers.
    I've been playing with this trying to find the problem but can not.
    Here is the link where the script is being used,
    http://www.bassintips.com
    Is there a way to fix my problem or errors?

    Thanks in advance fro any help.
    Take Care All

  2. #2
    Join Date
    Dec 2004
    Posts
    177
    Thanks
    0
    Thanked 18 Times in 17 Posts

    Default

    Okie dokie, this is a somewhat easy fix.

    Step 1: Line #385 - Remove [align="center"] From BOTH the <table> and <td> tags.

    Step 2: Line #424 - (Yes, I know it says don't edit, it lies). Find this part, keeping in mind that you are only looking for id's canvas0 and canvas1:
    Code:
    <div id="canvas0" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div><div id="canvas1" style="position:absolute;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div></div>
    And add text-align:center; after position:absolute; Should look like so:
    Code:
    <div id="canvas0" style="position:absolute;text-align:center;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div><div id="canvas1" style="position:absolute;text-align:center;background-color:'+bgcolor+';width:'+scroller_width+';height:'+scroller_height+';top:'+scroller_height+';filter:alpha(opacity=20);-moz-opacity:0.2;"></div></div>
    Verzeihung!

  3. The Following User Says Thank You to Minos For This Useful Post:

    backlasher55 (06-06-2008)

  4. #3
    Join Date
    Jun 2008
    Posts
    3
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Thumbs up

    Minos,
    Thank you very much for your assistance,
    I appreciate your help,that fixed my problem
    Take Care

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
  •