Resizing Multi Type Columns

  • IT_Office
    Asked on November 23, 2021 at 12:55 AM

    Hi, is it possible for the columns to resize based on user's input?

    Taking the column 'Reason for Leaving' as an example, I have filled in the first row with 'Better Opportunities'. Is there a way that the row/text box auto-adjust to my input please?

    Also, what about the font size? Is there a way to resize words?

    Thank you.

    Jotform Thread 3533407 Screenshot
  • Bojan Support Team Lead
    Replied on November 23, 2021 at 7:30 AM

    Greetings.

    Unfortunately, it is not possible to make the column automatically change width as you type. You can only set a fixed width using custom CSS. And making the field wider will make the table go out of the form, a scroll bar needs to be added below.

    Please try the following CSS:

    .form-matrix-headers.form-matrix-column-headers.form-matrix-column_7 {
     width: 200px;
    }
    #cid_35 table {
     width: 900px;
    }

    You can click here to see how to inject CSS into your form.

    Let us know if this solution works for you.