Okay
  Public Ticket #855442
Clients Carousel
Closed

Comments

  • David started the conversation

    Hi, 

    I love this theme and it has nearly everything I need - can't wait to relaunch my website. I'd like to customize the clients carousel a bit, but it seems there are no options to do that in any way. I want the carousel to display more logos (right now it's only 4, I want 5 or 6) and I want the logos to be a bigger (= wider - height ist sufficient but wide logos are too small). How can I do that? Thanks!

  •  1,800
    Support replied

    Hello you can customize the client carousel by going to /js/scripts.js and modify this bit:

    if( $('.clients-carousel').length > 0 ){

    $(".clients-carousel").owlCarousel({
    loop:true,
    margin:120,
    autoplay: true,
    autoplayTimeout: 5000,
    dots:false,
    responsive:{
    0:{
    items:1
    },
    600:{
    items:2
    },            
    960:{
    items:3
    },
    1200:{
    items:4
    },
    1500:{
    items:6
    }
    }

    });

    and this is the complete set of options:

    http://www.owlcarousel.owlgraphic.com/docs/api-options.html


    Thanks

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • David replied

    Thank you, worked good.