Request to add Right-To-Left alignment option on forms

  • rayanqot
    Asked on January 28, 2018 at 7:01 AM

    How I Can Make Alignment from right to left

    We Are An Arabic Comp, we want to make an employment application, but we didn't find anything about Arabic language or right Alignment, Is that possible?

     

    Regards,

  • Mike
    Replied on January 28, 2018 at 10:13 AM

    This should be possible to set the right-to-left alignment on the classic layout forms by injecting the following CSS code to them.

    .form-all {
    direction:rtl;
    }
    .form-line-column,.form-label-right,.form-radio-item { 
    float:right;
    }
    .form-label.form-label-auto {
    text-align: right;
    direction:rtl;
    float: inherit;
    }
    .form-sub-label {
    direction:rtl;
    }

    Request to add Right To Left alignment option on forms Image 1 Screenshot 30

    The Header field is aligned via its properties.

    Request to add Right To Left alignment option on forms Image 2 Screenshot 41

    If you need any further assistance, please let us know.