Viewing 1 reply thread
You must be logged in to reply to this topic.
I’m running the Testimonial (Cycle) on one of website pages and the speed is way too fast – impossible to read anything. How do I reduce the speed please?
Hello,
Please try to edit the file main.js and replace the function testimonialCycle()
function testimonialsCycle() {
"use strict";
var $ = jQuery.noConflict();
$('.testimonial_cycle').each(function() {
var $self = $(this);
var container_width = $self.parents('.wpb_wrapper').first().width();
$('.item', $self).width(container_width + 'px');
$self.carouFredSel({
auto: true,
scroll: { items: 1, fx: 'fade' },
});
});
}
replace with:
function testimonialsCycle() {
"use strict";
var $ = jQuery.noConflict();
$('.testimonial_cycle').each(function() {
var $self = $(this);
var container_width = $self.parents('.wpb_wrapper').first().width();
$('.item', $self).width(container_width + 'px');
$self.carouFredSel({
auto: true,
scroll: { items: 1, fx: 'fade', duration:500 },
});
});
}
Save the file.
Let us know.
Regards!
You must be logged in to reply to this topic.