As far as I understand, Bricks uses “swiperjs” for the nestable slider. Can someone give me a hint how I can achieve this:
Appreciate your help
As far as I understand, Bricks uses “swiperjs” for the nestable slider. Can someone give me a hint how I can achieve this:
Appreciate your help
It’s called splide not swiper, but you’re on the correct documentation.
if you just mean the spacing between the slides, there’s a setting called ‘spacing’. It’s not visible unless you add a background or border to the slides. But it adds the spacing/gap between the slides.
if you mean the actual padding option from splide. You’d need to use the custom options, and add it in manually directly from splide. As it wasn’t added in as an option in Bricks.
Thank you for your help. Works great (it was “if”-nr. 2")
For anyone else who might stumble over this:
Example:
{
"height" : 400,
"type" : "loop",
"padding" : "20%",
"gap": "5em"
}
PS: Make sure to use the double quotes " ;-)