Results 1 to 2 of 2

Thread: Content Slider doesnt slide...

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

    Default Content Slider doesnt slide...

    Featured Content Slider
    http://dynamicdrive.com/dynamicindex...tentslider.htm

    I am not sure what I am doing wrong...

    I copy and paste the html from the script page directly into my html editor.

    I have the contentslider.css, contentslider.js, and loading.gif all in the same folder as my website, but for some reason when I load the page, the slider shows up but doesnt automatically slide. I have to manually go to the next slide.

    What should I do? I am useing I.E. 7.

  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

    This bit:

    Code:
    <script type="text/javascript">
    //ContentSlider("slider_ID" , opt_miliseconds_rotate)
    ContentSlider("slider1") //or ContentSlider("slider1", 3000) to auto rotate every 3 seconds
    
    </script>
    means do this instead:

    Code:
    <script type="text/javascript">
    //ContentSlider("slider_ID" , opt_miliseconds_rotate)
    ContentSlider("slider1", 3000)
    
    </script>
    for a slider that starts out automatic.

    Just in case you are wondering, anything after // on a given line is a comment (in this case instructions) and has no effect on the operation of the script.
    - 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
  •