Configurable List - number ignoring CSS for height

  • brandon.carlson
    Asked on February 23, 2018 at 7:37 PM

    I'm using the CSS below, but the number option seems to ignore the height setting. Is it possible to get it to?


    .col1 > input, .col2 > input, .col3 > input { width: 200px !important; height: 25px !important;}

    15194324132018 02 23 16 32 16 Sales Ques Screenshot 10

  • Support_Management Jotform Support
    Replied on February 23, 2018 at 10:55 PM

    The markdown for the number field is not the same as the ones used by the textboxes. There's an extra div right before the input on the .col3 section so use these codes instead:

    .col1 > input, .col2 > input, .col3 > div > input {

      width: 200px !important; height: 25px !important;

    }