Results 1 to 3 of 3

Thread: Conveyor Belt slideshow- need it to be contiguous!

  1. #1
    Join Date
    Apr 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Conveyor Belt slideshow- need it to be contiguous!

    1) Script Title: Conveyor Belt slideshow

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

    3) Describe problem: Everything is working great except for the problem where the images on the end disappear. I want it to be completely seamless and contiguous.

    Any Suggestions? This is for my final project for Dreamweaver and I am on a bit of a time schedule.

    http://www.southernfocusdesigns.com/Final/home.html

  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

    Unless your only target browsers is IE, you may want to rethink portions of your layout strategy. Using text-align:center for the body element is not the right way to center your page. The proper way is to use a valid URL DOCTYPE and a master container division with width specified that has its margin set:

    Code:
    margin: 0 auto;
    However, if IE is all that you are concerned with, then in the script change:

    Code:
    write('<div style="position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">')
    to:

    Code:
    write('<div style="text-align:left;position:relative;width:'+sliderwidth+';height:'+sliderheight+';overflow:hidden">')
    - John
    ________________________

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

  3. #3
    Join Date
    Apr 2009
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    THANKS! It worked!!!

    Normally I wouldn't do something just for IE...but this is a school project and that is the graded only for the look and design not necessarily the value of the code. So, I am just getting it to work! LOL The teacher will look at it on IE!!!!

    Thanks again! I spent hours trying to figure that out!

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
  •