How can I make a text area box static? (disable text area resizing)

  • Manuel1234
    Asked on July 13, 2015 at 4:31 PM

    Hello, i'm trying to build a form so users can type data, however i need to prevent the user to be able to drag the text box down, this causes a problem because it covers my layout, i need a way to keep the text box static.

     how can i fix this?

     

    Jotform Thread 609211 Screenshot
  • Mike
    Replied on July 13, 2015 at 5:40 PM

    Thank you for contacting us.

    The resizing corner on Text Areas is added by some web browsers, and in order to remove it you can inject the next CSS to your form.

    textarea {
    resize: none;
    }

    How can I make a text area box static? (disable text area resizing) Image 1 Screenshot 20

    Please feel free to contact us if you need any further assistance.

  • Manuel1234
    Replied on July 13, 2015 at 6:40 PM

    I apreciate the help, that fixed the problem "thank you  support team"