Can you make the height of a textarea field larger using CSS or some other method?

  • tlobaugh
    Asked on October 28, 2014 at 11:42 AM

    This is in relation to a configurable list widget. We sometimes need to review and revise information after the initial data entry process and our end users are requesting a larger box for some of the textarea fields so they can more easily review what they have previously written. Can this be done with CSS or some other method or are the data entry boxes for those sub-fields fixed in size?

    Thanks

     

  • Jeanette JotForm Support
    Replied on October 28, 2014 at 1:31 PM

    Yes, you can inject custom CSS in the configurable list , simply click on the wizard, scroll to bottom and find the section where you can inject the code

    Can you make the height of a textarea field larger using CSS or some other method? Image 1 Screenshot 20

     

    I've injected the code below, for this form:

    th.col4 {
    color: blue;
    }
    textarea {
        width: 150px;
        height: 80px;
    }