Right align for checkboxes on Hebrew translation.

  • hatikva
    Asked on January 31, 2018 at 6:43 AM

    I have a form with Hebrew translation.  For the hebrew translation can the circles to select the 5 options be on the right side of the text instead of the left?

    Thanks. 


  • Kevin Support Team Lead
    Replied on January 31, 2018 at 10:00 AM

    Please inject this code to resolve the issue with the check boxes: 

    [dir="rtl"] .form-radio-item:not(#foo) label:before {

        right: 0px;

    }

    This guide will help you injecting it: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    I hope this helps. 

  • hatikva
    Replied on January 31, 2018 at 11:33 AM

    Great thanks.  Now the text for these 5 options is left aligned. Can it be right aligned?

  • David JotForm Support Manager
    Replied on January 31, 2018 at 12:33 PM

    They appear to be right aligned already:

    1517419985rtl Screenshot 10

    Let us know if you still need help.

  • hatikva
    Replied on January 31, 2018 at 1:43 PM





    The circles are but the Hebrew text isn’t. Can you see that where the text starts right after the circles from right to left that they all start at different spaces from the circles?




    ...
  • Kevin Support Team Lead
    Replied on January 31, 2018 at 2:22 PM

    Thank you for the details, that should be fixed with this code: 

    [dir="rtl"] .form-radio-item:not(#foo) label {

       float: right !important;

    }

    Please add it at the bottom of the existing code of your form. 


  • hatikva
    Replied on January 31, 2018 at 2:28 PM

    Wonderful.  Thank you very much.