Can someone please tell me how to change the amount of rows in a textarea? I just want to change the height of the textbox...
Can someone please tell me how to change the amount of rows in a textarea? I just want to change the height of the textbox...
Please share a URL to the page on your site where this form is embedded, and let us know which textarea you want to increase in size. We will help you with the CSS to change that.
Basically though, you can increase all the Gravity Forms textareas in height by adding this CSS to your theme's stylesheet:
[css]
body .gform_wrapper textarea {
height: 250px!important;
}