Change form language and set to RTL

  • picturegraphinc
    Asked on September 2, 2016 at 11:30 AM

    Is Possible to make a form in Hebrew?  (the fields have to go from right to left - also the label have to be in the right of the text field).

    thanks

    Mendy

  • Support_Management Jotform Support
    Replied on September 2, 2016 at 12:16 PM

    Hello Mendy, yes you can translate/localize your form to Hebrew and then use CSS to set the orientation from right to left.

    1. To add a language to your form, just click PREFERENCES at the top > on the LANGUAGES section, click ADD > type in HEBREW > then SAVE

    Change form language and set to RTL Image 1 Screenshot 30

    Related guide: How-to-translate-your-forms-to-different-languages 

    2. And then to display the form in RTL format, just inject the following CSS codes:

    .form-sub-label {

       direction: rtl;

       unicode-bidi: bidi-override;

    }

    .form-all {

       direction: rtl;

    }

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

       float: right;

    }

    Here's how/where to inject the CSS codes:

    Change form language and set to RTL Image 2 Screenshot 41

    Related guide: How-to-Inject-Custom-CSS-Codes 

    Let us know if you'll need further help.