Custom CSS in Input table:In a matrix how can I make the text box in the column wider

  • gl9577
    Asked on August 30, 2018 at 12:34 PM

    I want to make the text box in the column wider on the mobile app for people to see what they are typing.


    At the bottom where it says entry fees.  I want the text box to be wider, I only got the column wider?

  • roneet
    Replied on August 30, 2018 at 2:08 PM

    To increase the width of the input boxes you can add a custom CSS to your form designer.

    #input_14_0_0,#input_14_1_0,#input_14_2_0,#input_14_3_0{
    width:150px!important;
    }

    #input_14_0_1,#input_14_1_1,#input_14_2_1,#input_14_3_1{
    width:150px!important;
    }

    To increase the width more you may increase the value of 150 pixel.

    Custom CSS in Input table:In a matrix how can I make the text box in the column wider Image 10

    Guide-to-inject-custom-CSS:

    https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    For the rest of the Input tables you may find the Field Id for each text box element by Inspecting

    You may refer to this guide:

    https://www.jotform.com/help/146-How-to-Find-Field-IDs-and-Names

    Hope this helps!

    Thanks.