Currently, I am implementing Slick Carousel with centerMode. Is there a method to ensure that all items are displayed without being cut off on the screen?
The setup I have is quite simple:
$('.your-class').slick({
centerMode: true,
slidesToShow: 2,
slidesToScroll: 2
});
If you want to check out the code in action, feel free to visit this jsFiddle link.