Slider spacing question

The Slider module is a brilliant addition to L&L. My only issue is that what I slide varies in height and the tallest items are cut off at the bottom.

How can I reserve space to allow room for all slides to show?

Cheers, Richard

Hi Richard, could you try this CSS?

  .tslide-outer .tslider {
    height: auto !important;
  }

Hi there,

Iā€™m having the same issue. Whilst the auto height suggestion works in that it allows all the content to show, I need a way to make all the slides have equal height as they are cards with a background colour.

Any ideas?

Solved.

For anyone else having the same problem, I added display: flex; to this and it worked.

.tslide-outer .tslider {
height: auto !important;
display: flex;
}

3 Likes