Increasing the width of matrix cell

  • wsoc2015
    Asked on November 28, 2015 at 9:29 PM

    I want to make the size bigger where you type your info?

  • Jan
    Replied on November 29, 2015 at 5:41 AM

    You can use these custom CSS code in order to increase the width of each cell in the matrix table.

    /* 1st column */

    .form-matrix-row-headers +.form-matrix-values .form-textbox {

    width: 150px;

    }

    /* 2nd Column */

    .form-matrix-row-headers +.form-matrix-values +.form-matrix-values .form-textbox{

    width: 150px;

    }

    /* 3rd Column */

    .form-matrix-row-headers +.form-matrix-values +.form-matrix-values +.form-matrix-values .form-textbox{

    width: 150px;

    }

    You can change the specified with to your preference. Here's a guide on how to inject custom CSS on your form.

    Let us know if you need further help. Thank you.