How do I write from right to left and nor from left to right?

  • Fridate
    Asked on January 7, 2019 at 5:38 AM

    Hi,

    I would like to make a form in hebrew and to write the form from right to left and not from left to right.

    Is it possible?


    Thanks,

    Tamir

  • Ashwin JotForm Support
    Replied on January 7, 2019 at 7:54 AM

    Yes it is possible to achieve your requirement. Please inject the following custom css code in your form to make RTL form:

    .form-sub-label {

        direction : rtl;

        unicode-bidi : bidi-override;

    }

    .form-all {

        direction : rtl;

    }

    .form-line-column,.form-label-right,.form-radio-item {

        float : right;

    }

    .form-label.form-label-auto {

        float : right;

    }

    The following guide should help you how to inject custom css code in form:   https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    Do try it out and get back to us if you have any questions.