Cards: Add an option to render the texts from right to left

  • JobTestPrep
    Asked on July 19, 2018 at 4:47 AM

    As you can see in this form - the arrow direct to the right side, and the question mark is on the right side of the question (should be at the left side).


    Thank you!


  • Support_Management Jotform Support
    Replied on July 19, 2018 at 6:52 AM

    Hey @JobTestPrep - With the current layout you're using (Cards Layout), there's no way to change the direction of text. So, I elevated your thread as a feature request. Please keep in mind that there's no assurance whether this will be implemented. It will highly depend on the viability of the feature, the amount of similar requests we get, along with the workload of our Developers.

    We can't give you any timeframe but we'll keep you apprised on this same thread when there's an update.

    For the meantime, if it's imperative to render the text from right to left, one temporary solution is to change your form layout from Cards to Classic.

    Related guide: How-to-Change-the-Form-Layout

    Once you're using the Classic Layout, you can use CSS to customize the form and render the texts in the RTL direction.

    .form-all {

      direction: rtl !important;

    }

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

      float: right !important;

    }

    .form-label.form-label-auto {

      text-align: right !important;

      direction: rtl !important;

    }

    .form-sub-label {

      direction: rtl;

    }

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

  • JobTestPrep
    Replied on July 19, 2018 at 8:14 AM

    Thank you!!!

    Keep in mind that most of the middle-east languages are written from write to left = more business opportunities :)