Can I increase height on "text" field with CSS for configurable list widget?

  • aaosresearch
    Asked on May 3, 2016 at 9:41 AM

    I increased the height of the "textarea" boxes with no problem by using

    .col2 textarea

    {

    width:200px;

    height:150px;

    resize:vertical;

    }

    but this strategy is not working for the "text" field when I do:

    .col1 text

    {

    width:120px;

    height:80px;

    resize:vertical;

    }

     

    Is it possible to increase this field with CSS? If so, can you please help me devise a code that will work?

     

    Thank you, 

     

    Kyle 

    Jotform Thread 831555 Screenshot
  • Huberson
    Replied on May 3, 2016 at 10:39 AM

    Hi,

    You do not have any text field in the Configurable list Widget actually.  Instead of '.col1 text', change the selector to '.col1 textarea'.

    .col1 textarea {

        width:120px;

        height:80px;

        resize:vertical;

    } 

     

    Since they are all textarea , you should be able to change their styling with the same selector.

  • aaosresearch
    Replied on May 10, 2016 at 10:19 AM

    Great, thanks!