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 field not displaying

  1. I haven't edited my forms in months but I checked today and the name field isn't displaying. I updated to the latest version today though I'm not 100% sure if the update caused this or not.

    You can see what I mean at http://www.wpmods.com/contact/

    Currently, visitors cannot email me because of this problem :)

    Kevin

    Posted 13 years ago on Sunday March 11, 2012 | Permalink
  2. Kevin, it looks like this style in your theme seems to be hiding it, however that is a standard piece of our forms.css so I don't believe that is truly the cause:

    [css]
    .gform_wrapper .ginput_complex {
    overflow: hidden;
    }

    You do have a JS error on that page:

    http://grab.by/cjfu

    Maybe you could see if that was the cause somehow?

    Posted 13 years ago on Sunday March 11, 2012 | Permalink
  3. Thanks for the quick reply Rob.

    I updated my stylesheet with the code you suggested there. I also disabled that plugin for pages (I'll raise the issue with the plugin developer just now). Unfortunately, the problem is still there.

    Posted 13 years ago on Sunday March 11, 2012 | Permalink
  4. Hold on :) I see the function is still being called from the header.

    Posted 13 years ago on Sunday March 11, 2012 | Permalink
  5. I deactivated that plugin and checked the source and it wasn't being called from the header any more however the name field still isn't showing.

    Posted 13 years ago on Sunday March 11, 2012 | Permalink
  6. AH, looks like it's actually because of this float:

    [css]
    #content label {
    width: 100%;
    display: block;
    float: left;
    padding: 0 0 5px 0;
    }

    That float: left is the cause. Try adding this in, if you don't want to mess with that selector above:

    [css]
    .gform_wrapper .top_label .gfield_label {
    float: none !important;
    }
    Posted 13 years ago on Sunday March 11, 2012 | Permalink
  7. Thanks Rob. Seems to be displaying ok now.

    Thanks for all your help with this :)

    Posted 13 years ago on Sunday March 11, 2012 | Permalink