How to ensure the slider height get's auto adjusted according to its content?

Hey Nicola,

There’s another solution that worked for me which I found on forum. This css code made all other slides that are not showing to 0px height so that the Mask will adapt to the actuals slide and here’s the solution:

<style>
    .w-slide [aria-hidden="true"] {
         height: 0px;
    }
</style>
9 Likes