Is it possible to achieve a layout like this using the slick slider?
+-------+ +-------+
| | | |
| +-------+ |
+----| |----+
| |
+-------+
The issue arises when trying to set margins between the slides. I came across a helpful resource on Stack Overflow which explains how you can adjust the margin like so:
/* the slides */
.slick-slide {
margin: 0 27px;
}
/* the parent */
.slick-list {
margin: 0 -27px;
}
However, I'm struggling to make the margin negative in order for the third element to overlap the first two instead of just sitting between them.
Has anyone managed to accomplish this or have any resources that could help with creating a similar effect?