• shami220099

    (@shami220099)


    Hi
    I am looking to find out how to change the speed on the slideshow of this template. I have tried the change slider per the info in cbruse2005 suggestion though it took off the sides and did nothing to the slideshow ..

    any suggestions would be appreciated

    test

Viewing 3 replies - 1 through 3 (of 3 total)
  • hi

    i’ve worked it out after reading through the javascript file

    on line 116 find

    // In the words of Super Mario "let's a go!"
            var timer = 0;
            if(!settings.manualAdvance && kids.length > 1){
                timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, settings.pauseTime);
            }

    and replace settings.pauseTime with a time for example 6500 so the code should now read

    // In the words of Super Mario "let's a go!"
            var timer = 0;
            if(!settings.manualAdvance && kids.length > 1){
                timer = setInterval(function(){ nivoRun(slider, kids, settings, false); }, 6500);
            }

    and the slide will take 6.5 seconds to change

    hope this helps you all

    dude! thanks!

    There’s actually 2 more instances of that same block of code in the jquery.nivo.slider.js file that you also need to alter otherwise when you hover over the slide, or click next/prev, it’ll revert to transitioning quickly

    roughly line 193 and 214 in addtion to line 119

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Slide speed how do I change’ is closed to new replies.