Making the labels in RTL direction

  • jffpitchpoint
    Asked on January 26, 2016 at 12:06 PM
    couldn't figure out how to make the labels written in right to left direction. any suggestions on that topic?
  • Jan
    Replied on January 26, 2016 at 12:17 PM

    Please insert this CSS code to make the label in right to left direction.

    .form-label {

    text-align: right;

    direction: rtl !important;

    unicode-bidi: bidi-override !important;

    }

    Here's a guide on how to inject custom CSS to your form. Hope that works. Thank you.