PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Input height not matching text height

  1. 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.

    Posted 12 years ago on Friday November 25, 2011 | Permalink
  2. 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;
    }
    Posted 12 years ago on Friday November 25, 2011 | Permalink
  3. Works! Thanks you! You guys are awesome!

    Posted 12 years ago on Friday November 25, 2011 | Permalink
  4. Great! Glad to help out. :)

    Posted 12 years ago on Friday November 25, 2011 | Permalink

This topic has been resolved and has been closed to new replies.