short description of the bug / issue, provide more detail below.
Slick doesn't show slides
when infinite is on true nothing is show instead when it is on false it is shown only the first slide
====================================================================
https://jsfiddle.net/maofree/z7eq6azg/3/
====================================================================
it happens on all examples
====================================================================
thanks
bye
Did you add dir="rtl" to the slider parent or html element?
Hi
I don't know that, however I'll try it tomorrow
thanks
do you suggest like that?
<div dir="rtl">
<div class="slider">
<div>slide1</div>
<div>slide2</div>
<div>slide3</div>
<div>slide4</div>
<div>slide5</div>
<div>slide6</div>
</div>
</div>
I've updated the example on jsfiddle but I get the same error
Yes, but I think you have to change this attribute depending on your breakpoint
Hi
thanks makshh
I've understood how it works
bye
Would you please share ? Thanks ! :)
Please help I have used dir = rtl the slides not working properly only first is showing
that also when infinite is turned off
clicking next slides slider but slide seems to be in ltr direction empty slide sliding in.
Please help I have used dir = rtl the slides not working properly only first is showing
that also when infinite is turned off
clicking next slides slider but slide seems to be in ltr direction empty slide sliding in.
Try used dir = ltr. For example add to
.slick-slider .slick-track, .slick-slider .slick-list {
direction: ltr;
}
It will works)
This works for me:
[dir='rtl'] .slick-slide
{
float: left;
}
and
.slick-slider .slick-track, .slick-slider .slick-list {
direction: ltr;
}
@mostafazs thank you so much!!!!
Most helpful comment
This works for me:
and