-
-
Is there a way to auto scroll the client logos? I have it on my homepage and my client wants it to auto scroll through their logos. Let me know.
-
Hello,
Yes, you can auto scroll the clients logo (clients carousel).
Please go to your theme files–>wp-content\themes\specular\js and open main.js.
Find these lines:function clientsCarousel(){ "use strict"; var $self = $('.clients_caro'); if($self.length){ $self.css('display', 'none'); $self.imagesLoaded(function(){ $self.css('display', 'block'); $self.carouFredSel( { items:4, auto: false, scroll: { items : 1 }, prev : { button : $self.parents('.clients_el').first().find('.prev') }, next : { button : $self.parents('.clients_el').first().find('.next') } }); }) } }and replace with these:
function clientsCarousel(){ "use strict"; var $self = $('.clients_caro'); if($self.length){ $self.css('display', 'none'); $self.imagesLoaded(function(){ $self.css('display', 'block'); $self.carouFredSel( { items:4, auto: true, scroll: { items : 1 }, prev : { button : $self.parents('.clients_el').first().find('.prev') }, next : { button : $self.parents('.clients_el').first().find('.next') } }); }) } }Let us know.
Best regards! -
Hello,
How can I use this function also in Tower theme?
Thanks!
-
Hello,
Please follow the instructions above for the Tower theme as well.
Best regards!
-
-
Viewing 4 reply threads
You must be logged in to reply to this topic.