How do I make it so that the text entered into my form matches the field height?
Here is my form: http://www.careergreenlight.com/subscribe/
I made the input fields taller, but when text is entered, it's still small.
How do I make it so that the text entered into my form matches the field height?
Here is my form: http://www.careergreenlight.com/subscribe/
I made the input fields taller, but when text is entered, it's still small.
You can place a padding: 0; and also up the font-size, maybe something like this:
[css]
body .gform_wrapper .gform_body .gform_fields .gfield input[type="text"] {
height: 30px;
width: 20em;
border: 2px outset gray;
padding: 0;
font-size: 16px;
}
Works! Thanks you! You guys are awesome!
Great! Glad to help out. :)