Results 1 to 5 of 5

Thread: Ultimate Slide SHow PLACEMENT

  1. #1
    Join Date
    Aug 2007
    Posts
    26
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Ultimate Slide SHow PLACEMENT

    1) Script Title: Ultimate Slide Show

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

    3) Describe problem: Not really a problem but a dilemma....Great code...many thanks to he/she/those whocreated it and offered it.

    I got the code for centering the slide show, but I would like to know if there is a way to place the slide shows on the screen...like 2 on the same horizontal axis...one to the left and one to the right.

    Or even just move the 1st one off the left edge...

    Thanks for any help on this.

    Joel

  2. #2
    Join Date
    Aug 2007
    Posts
    26
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Btt>>>

  3. #3
    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

    Put the slide show in a division and set the dimensions of the division to that of the slide show:

    Code:
    <div style="width:140px;height:225px;">
    <script type="text/javascript">
    //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
    new fadeshow(fadeimages, 140, 225, 0, 3000, 1, "R")
    </script>
    </div>
    Now it can be placed on your page just like any other division element. It can go in a table cell, or in another division, or in a paragraph, you can float it, relatively position it, just about anything you like. Just don't align or text-align it. If you must align it, align it left and put another division around it to align it as desired.
    - John
    ________________________

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

  4. #4
    Join Date
    Aug 2007
    Posts
    26
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    tried it...didn't work.
    Copied teh code exactly as you show it...cannot get the slideshow to budge off the left side.

  5. #5
    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

    Well, let's say you just had an image in there:

    Code:
    <div style="width:140px;height:225px;">
    <img src="some.jpg" width="140" height="225">
    </div>
    Could you do it then? It's just basic HTML coding.
    - 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
  •