Results 1 to 4 of 4

Thread: Help - Ultimate Fade-in slideshow (v1.5)

  1. #1
    Join Date
    Nov 2006
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Help - Ultimate Fade-in slideshow (v1.5)

    1) Script Title: Ultimate Fade-in slideshow (v1.5)

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

    3) Describe problem:
    What a great script, i just want to have a background image in the table that the slideshow sits on top of e.g.

    <td width="207" rowspan="2" valign="top" background="/images/en_CC/IMAGEHERE.gif"><div align="center">
    <script type="text/javascript">
    //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
    new fadeshow(fadeimages, 220, 353, 0, 3000, 0)
    new fadeshow(fadeimages2, 220, 353, 0, 3000, 0)

    </script></div></td>

    The slideshow kicks this down below it and i would like to know if its possible to have them overlap?

    THANK YOU!!!!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    The containing division is probably not necessary. The width of the cell should be at least equal to, perhaps even a little greater than the width of the sideshow(s). If you are only using one slideshow, get rid of the call that you are not using:

    Code:
    <td width="207"
    Code:
    new fadeshow(fadeimages, 220, 353, 0, 3000, 0)
    new fadeshow(fadeimages2, 220, 353, 0, 3000, 0)
    There could be other problems.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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

    Default

    Hi Thanks for the quick reply, looks like the background was working but as the table was too long i was getting a tiled image that made it look like it was being pushed below.
    Dont suppose you know of a way to make a background image get used ONLY once?

    Thanks!

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    The background attribute has been deprecated. Background images should be applied using css style, here is an example:

    HTML Code:
    <td width="207" rowspan="2" valign="top" style="background: red url('/images/en_CC/IMAGEHERE.gif') center top no-repeat;">
    It is best to specify a color with an image. I used red but, you can use any you like.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •