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 field font problems

  1. torweb
    Member

    When I preview my form I can use upper and lower case letters. When I add the form to a page, all of my letter are displaying upper case. I can't enter upper and lower case letters to the input fields, however the notification email displays the correct upper and lower case lettering.

    Help and thanks

    Posted 12 years ago on Friday April 6, 2012 | Permalink
  2. torweb
    Member

    Here is the link to the form: http://www.acvci.com/?page_id=1713

    Posted 12 years ago on Friday April 6, 2012 | Permalink
  3. This text-transform from your theme's stylesheet is causing it:

    [css]
    input, select, textarea {
    vertical-align: middle;
    font-family: Arial, Helvetica, Sans-Serif;
    font-style: normal;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    }

    Try placing this into the stylesheet:

    [css]
    .gform_wrapper input[type="text"], .gform_wrapper input[type="url"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"], .gform_wrapper input[type="number"], .gform_wrapper input[type="password"], .gform_wrapper textarea, .gform_wrapper select {
    text-transform: none;
    }
    Posted 12 years ago on Friday April 6, 2012 | Permalink
  4. torweb
    Member

    Great Rob...thanks very much!!

    Posted 12 years ago on Friday April 6, 2012 | Permalink
  5. Right on, glad to help!

    Posted 12 years ago on Friday April 6, 2012 | Permalink

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