Input Table

  • PDInc
    Asked on January 28, 2020 at 10:23 AM
     

    How do I maximize the width of my table with all columns at equal width?


    Also, how do I bold the Row Headers?


    Thanks!

     
  • Kevin Support Team Lead
    Replied on January 28, 2020 at 12:51 PM

    It's possible to increase the field's width with this code: 

    .form-matrix-table .form-textbox {

        width: 127px !important;

    }

    To change the headers, please inject this code: 

    th.form-matrix-row-headers {

        font-weight: bold;

    }

    This guide will help you injecting the code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    I hope this helps. 

  • PDInc
    Replied on January 28, 2020 at 4:10 PM
     

    Perfect!  Thank you!!