Matrix label column width

  • gymvic
    Asked on November 8, 2015 at 10:49 PM

    Hello

     

    I would like to have a consistent column width for three matrix questions (see below).

    Is there a way I can make the label width consistent across each of the matrix.

    Thanks!

    Jamie

    Matrix label column width Image 1 Screenshot 20

    Jotform Thread 700466 Screenshot
  • Welvin Support Team Lead
    Replied on November 9, 2015 at 3:35 AM

    Hi Jamie,

    For the rows, you can inject the following custom CSS codes:

    th.form-matrix-row-headers {

        width: 250px !important;

        white-space: normal;

    }

    For the colums, you can inject the following custom CSS codes:

    th.form-matrix-column-headers {

        width: 150px;

        white-space: normal;

    }

    Here's how to inject the codes: http://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes. Add the codes to the bottom part if you have an existing code in the inject CSS area.

    Thanks