FlexSlider icon indicating copy to clipboard operation
FlexSlider copied to clipboard

RTL : Slider starts with wrong image

Open rnivash opened this issue 6 years ago • 2 comments

if I enable RTL, slider starts with last image in the array instead of the first one. This issue is clearly visible when manual controls are in use and each buttons are linked wrong image (i-1). I am able to reproduce this issue in demo too.

In asnavfor-rtl.html demo file, it starts with image "Adventurer Caramel" instead of the first image "Adventurer Cheesecake Brownie".

rnivash avatar Dec 18 '18 12:12 rnivash

http://flexslider.woothemes.com/asnavfor-rtl.html

image

rnivash avatar Dec 26 '18 11:12 rnivash

I am experiencing the same issue. I have three slides, goes 3rd, 1st, 2nd..

Here is a temporary solution (css):

html[dir=rtl] ul.slides li.clone:not(:last-child) {
  margin-right: auto !important;
  margin-left: 0px !important;
  float: right !important;
}

acrolink avatar Feb 23 '19 12:02 acrolink