glide
glide copied to clipboard
Slide cropped
Hi,
I have a very strange issue with slider.
Sometimes, Glide display me 2 slides and the third is cropped like that :

I am working with Glide in v3.4.1. The code be like :
new Glide('.carousel-1', {
type: 'slider',
perView: 3,
bound: true,
startAt: 0,
breakpoints: {
767: {perView: 1},
991: {perView: 2},
992: {perView: 3}
},
}).mount();
hy, found some solution? and me i have same problem
I ran into this bug as well & was able to resolve it by removing the browser's default right margin from the ul.slider__slides element.
Ex:
.slider__slides {
margin-right: 0;
}