Hi all,
How can I change the direction of my questionnaire to "right to left" for Persian or Arabic languages? I've read in previous comments that I should use "javascript code" to do that. But I am just familiar with HTML codes and I couldn't find a code to put it in JS section in Formr website and solve the problem. I have found some related JS codes but I don't know how can I apply them in Formr.
For example, I have found this code that is suggested for changing the Heading. But I want to change the whole questionnaire text.
<!DOCTYPE html>
<html>
<body>
<h1 id="myID">Heading 1</h1>
<p>Click below to set the direction of heading to Left-to-right</p>
<script>
function display() {
document.getElementById("myID").style.direction = "rtl";
}
</script>
</body>
</html>
Is there any code to put it in JS section and solve the problem with text direction for Persian or Arabic languages?
Thanks,
Mohsen