Okay
  Public Ticket #2909386
Form text field height
Closed

Comments

  •  1
    Sepas started the conversation

    Hi, 

    how can I add more height to the text field in contact formular? It is a little difficult to write in this way. 

    Thanks

    Sepas


    5604103354.png
  •  1,801
    Support replied

    Hi there,

    you can increase the height of the textarea with 

    textarea {
        height: 50px;
    }

    increase the height, in pixels, and add the code to customizer -> additional CSS


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  1
    Sepas replied

    Hi, 

    Thank you for your quick answer. I have already tried this before. The main problem is the active state of the text field (line animation). The line stays at the same prior position. Please check the attached image.

    Thank you

    Sepas

  •  1,801
    Support replied

    Hello,

    if you increase the line's position 1 pixel less than the textarea height . So for example let's say you want the message area to be 250px height

    textarea {
        height: 250px;
    }

    then you add also the position for the line

    .message-box label.input_label {
        top: 249px;
    }


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy