Hello @yoramz,
Sorry for the late reply.
Yes, WhiteDot supports RTL. Here is how to do it.
Adding support for languages written in a Right To Left (RTL) direction is easy –
it’s just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
https://codex.www.ads-software.com/Right-to-Left_Language_Support
What you just need to do is go to Appearance > Customize > Additional CSS, and add this CSS code –
body {
direction: rtl;
unicode-bidi: embed;
}
Please let me know if your problem is solved.