RTL and Hebrew

  • Shay1111
    Asked on February 15, 2017 at 10:07 AM

    Hi,

     

    I'd like to Move from Wufoo to your service, but I can't find any way to use HEBREW Language.

    It is RTL

     

    Can you help me please?

     

  • Support_Management Jotform Support
    Replied on February 15, 2017 at 12:16 PM

    Yes you may use Hebrew and lots of other languages to localize your forms.

    Complete guide: How-to-Make-your-Forms-Multilingual

    What I'd recommend is for you to start building your form first > add the translations > then use CSS to make them them appear in RTL.

    To make a DOM element rendered in RTL, you may use this CSS:

    direction: rtl;

    External reference: https://www.w3schools.com/cssref/pr_text_direction.asp 

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

    Give it a whirl and don't hesitate to get back to us if you need more help.

  • Shay1111
    Replied on February 19, 2017 at 7:23 AM

    Hi,

     

    Thank you,

    I really like your system and would love to move all my activity to you guys.

    I got the translation part, but still the whole system isn't set as RTL.

    Do you have some custom code that I can use that set the whole form into RTL?

     

     

  • Support_Management Jotform Support
    Replied on February 19, 2017 at 9:05 AM

    Since you haven't mentioned which form you're currently working on, I used this one as an example http://www.jotform.me/form/70453598625465

    The labels on that form doesn't appear to be rendered in RTL direction so to change that, use the following CSS:

    .form-label {

       text-align: right !important;

    }

    RESULT:

    RTL and Hebrew Image 1 Screenshot 20

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