How can I customized a table

  • ercooper318
    Asked on December 17, 2015 at 12:25 PM

    I have used the matrix tool in my form .  There is a matrix labeled Specialty Items.  I do not need the first column (service quality, etc.)  But I do need the Item name and Website columns increase to allow for more information.

     

    How can I do that!

     

    Thank you

  • Mike_G JotForm Support
    Replied on December 17, 2015 at 1:35 PM

    You can customize the width of the textboxes in your matrix with the help of CSS that needs to be injected to your form. How-to-Inject-Custom-CSS-Codes

     

    #id_42 table td:nth-child(even) input{

    width: 150px !important;

    }

    You can add the CSS codes above to your form and that should make the Item Name and Website columns input textboxes wider.

    How can I customized a table Image 1 Screenshot 20

    I hope this helps. Let us know if you need any further assistance. Thank you.