glide icon indicating copy to clipboard operation
glide copied to clipboard

Slide cropped

Open frenchqwerty opened this issue 5 years ago • 2 comments

Hi,

I have a very strange issue with slider.

Sometimes, Glide display me 2 slides and the third is cropped like that : image

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();

frenchqwerty avatar May 12 '20 12:05 frenchqwerty

hy, found some solution? and me i have same problem

ezramod avatar Sep 08 '20 21:09 ezramod

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;
}

jchck avatar May 10 '21 15:05 jchck