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 border missing

  1. My gravity form is in a "fixed height scroll content right" page template and the left border for each input field is missing. I am fairly new with css and would appreciate some help locating where and what to change in the stylesheet to fix this problem.

    The page location is at: http://jeffhulme.com/?page_id=18

    Posted 11 years ago on Thursday November 1, 2012 | Permalink
  2. Try updating your CSS snippet you have for:
    #wrap .gform_wrapper select, #wrap .gform_wrapper textarea, #wrap .gform_wrapper input {}

    To this:

    [css]
    #wrap .gform_wrapper select, #wrap .gform_wrapper textarea, #wrap .gform_wrapper input {
    background: none;
    border: 1px solid #333;
    outline-style: none;
    color: #999;
    font-size: 16px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    padding: 8px 0 8px 5px;
    letter-spacing: normal;
    }

    I just changed the padding declaration.

    Posted 11 years ago on Thursday November 1, 2012 | Permalink
  3. Sweet! That worked great, thanks so much!!!

    Posted 11 years ago on Thursday November 1, 2012 | Permalink

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