Align Form from Right to Left

  • KhalidOdeh
    Asked on November 29, 2018 at 4:26 AM

    How can I align my form from right to left? the default is from left to right.



  • roneet
    Replied on November 29, 2018 at 6:13 AM

    You may inject the following CSS in your Form Builder.

    .form-sub-label {

    direction:rtl;unicode-bidi:bidi-override;

    }

    .form-all {

    direction:rtl;

    }

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

    float:right;

    }You can inject CSS to your form by following this guide: How to Inject Custom CSS Codes.

    Let us know how it goes.

    Thanks.

  • KhalidOdeh
    Replied on November 29, 2018 at 6:35 AM

    Thanks a lot, it is working fine now.