Mini Frontpage slider not work correctly in RTL language

Mini Frontpage slider not work correctly in RTL language.
2 years 9 months ago #1 by ارسال

Please Log in or Create an account to join the conversation.

  • Posted by TemplatePlazza (5261) Offline
Can you tell me your website link so I can see it
2 years 9 months ago #2 by TemplatePlazza

Please Log in or Create an account to join the conversation.

Hi
my website link: musicalgiftbox.ir
please see this image: musicalgiftbox.ir/mini-rtl.jpg
thanks
2 years 9 months ago #3 by ارسال

Please Log in or Create an account to join the conversation.

  • Posted by TemplatePlazza (5261) Offline
Can you try to add this code to the css adjustment tab in the module's backend
.tns-carousel {
  display: flex;
  flex-direction: row-reverse!important;
}
2 years 9 months ago #4 by TemplatePlazza

Please Log in or Create an account to join the conversation.

CSS is not the solution. The inline style I showed in the previous post were generated with JavaScript. For right-to-left languages, that value needs to be negative.
this inline style:
element.style {
transition-duration: 0s;
transform: translate3d(-33.3333%, 0px, 0px);
}
must change to :
element.style {
transition-duration: 0s;
transform: translate3d(33.3333%, 0px, 0px);
}
in RTL language.
2 years 9 months ago #5 by ارسال

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum