Hi,
Go to js/functions.js line #677 you can control that speed, adjust the “slideshowSpeed” in this snippet.
The code looks like this.
jQuery('.content-slider').each(function() {
var sliderAnimation = jQuery(this).attr('data-animation');
var autoplay = jQuery(this).attr('data-autoplay');
autoplay = ((autoplay === "yes") ? true : false);
jQuery(this).flexslider({
animation: sliderAnimation, //String: Select your animation type, "fade" or "slide"
slideshow: autoplay, //Boolean: Animate slider automatically
slideshowSpeed: 6000, //Integer: Set the speed of the slideshow cycling, in milliseconds
animationDuration: 1000, //Integer: Set the speed of animations, in milliseconds
smoothHeight: true,
directionNav: true, //Boolean: Create navigation for previous/next navigation? (true/false)
controlNav: false //Boolean: Create navigation for paging control of each clide? Note: Leave true for manualControls usage
});
});
Let me know, what you got.
Thanks,
laranz.