How can i change the height of the fill the cell where people put there answer ?
How can i change the height of the fill the cell where people put there answer ?
If you wanted to change the height of all the text inputs then you would add something like this to the end of your theme stylesheet.
[css]
body .gform_wrapper .gform_body .gform_fields .gfield input[type=text],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=email],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=url],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=number],
body .gform_wrapper .gform_body .gform_fields .gfield input[type=password] {
height: 24px;
}
If you need more examples, you can find those here..
http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples