@mmohdher @dan 100% related to right to left language. I added a slider to his project, and it behaves the same as in the video. Everything seems to be inverted including the logic Even the arrows are inverted.
I added a slider and re-uploaded the project. Images are not displayed in the browser.
@mmohdher Yes I know. There is an issue with the sliders logic if the language is right to left like yours. Realmac will need to fix this.
There are a few ternary conditionals that relate to right to left languages in slider.js that seem to be causing the issue:
next() {
this.to(
(current, offset) =>
current +
(this.isRTL ? -1 : 1) *
offset *
this.skip *
this.visibleSlides
);
},
Long story short, you can not fix it your end.
@Doobox Ah, I had forgotten about the absolute placement of a container. This gets it partially working but I am seeing lots of problems making this responsive across all breakpoints. There is a lot of overflow with my content. I’ll have to play with it more to see what is going on.
Thank you.
@handshaper You just need to reduce the size of your content with the breakpoint override dots as the device size gets smaller. In my simple example I only had one text to deal with, but the principle is the same.
After thought: Maybe you have not set the parent container that holds the absolutely positioned content overlay, and the slider to “relative”. Absolutely positioned elements almost always need the parent container to be position relative.
This looks like a bug, I’ll take a look asap and hopefully have a fix in the next beta