Input text direction from Right To Left
To make sure the inside text of the input box direction is from right to left.
You can use the following CSS styling:
<style>
.cFInput, .cTextArea{ unicode-bidi:bidi-override; direction: rtl;
}
input { unicode-bidi:bidi-override; direction: rtl;
}
</style>
To make your full survey, just add the direction:rtl to your body.
<style>
body { direction: rtl; }
</style>