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.

Name fields cut off

  1. I have a contact form where only the name fields are getting cut off on one side... i have been trying to figure it out for a while and just can't seem to find the problem. I searched thru the forums but didn't seem to find an answer. If anyone has seen this before i'd appreciate any help on it. Thanks.

    Bypassing the coming soon page:
    http://vipeventsandweddings.com/enter

    and the contact form is here:
    http://vipeventsandweddings.com/contact-us/

    Posted 11 years ago on Monday February 11, 2013 | Permalink
  2. Richard Vav
    Administrator

    Try adding the following to your themes stylesheet

    .gform_wrapper .field_name_first input, .gform_wrapper .ginput_complex .ginput_left input, .gform_wrapper .ginput_complex .ginput_right input {
    width: 90% !important;
    }
    Posted 11 years ago on Monday February 11, 2013 | Permalink
  3. Thanks Richard.... added it to the stylesheet but it's still the same.

    Posted 11 years ago on Monday February 11, 2013 | Permalink
  4. Richard Vav
    Administrator

    I can't see those styles, did you remove them, if so can you put them back then I can see what might be cancelling them out.

    Posted 11 years ago on Monday February 11, 2013 | Permalink
  5. The issue is the padding being added by your theme to all text inputs and textareas. Please add this to one of your theme's stylesheets:

    [css]
    body .gform_wrapper input[type="text"],
    body .gform_wrapper textarea {
        padding:0!important;
    }

    Screenshot: http://minus.com/lHHN032gcxkXz

    Posted 11 years ago on Tuesday February 12, 2013 | Permalink