Mini Frontpage slider not work correctly in RTL language
- Posted by ارسال (3) Offline
- Posted by TemplatePlazza (5261) Offline
- Posted by ارسال (3) Offline
Hi
my website link: musicalgiftbox.ir
please see this image: musicalgiftbox.ir/mini-rtl.jpg
thanks
2 years 9 months ago #3
by ارسال
my website link: musicalgiftbox.ir
please see this image: musicalgiftbox.ir/mini-rtl.jpg
thanks
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
2 years 9 months ago #4
by TemplatePlazza
.tns-carousel {
display: flex;
flex-direction: row-reverse!important;
}
Please Log in or Create an account to join the conversation.
- Posted by ارسال (3) Offline
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 ارسال
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.
Please Log in or Create an account to join the conversation.