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.

Extended Name fields too small

  1. I would like to use the "extended name" field, but I would like to increase the field length for the first and last name fields. How do I do this?

    Posted 10 years ago on Saturday May 18, 2013 | Permalink
  2. Richard Vav
    Administrator

    You would have to do that with CSS, try adding the following to your theme's style.css file or wherever you are instructed to place custom CSS.

    .gform_wrapper .ginput_complex .name_first, .gform_wrapper .ginput_complex .name_last {
    width: 150px;
    }

    The default width for the first and last name is 100px, so you can change the width I set in the snippet above to whatever suits your needs.

    Regards,
    Richard

    Posted 10 years ago on Saturday May 18, 2013 | Permalink
  3. Thanks! You saved me much time trying to figure that out. I now have it working, though I had to add "div":

    div.gform_wrapper .ginput_complex .name_first {
    width: 150px;
    }
    div.gform_wrapper .ginput_complex .name_last {
    width: 250px;
    }

    Posted 10 years ago on Saturday May 18, 2013 | Permalink
  4. Richard Vav
    Administrator

    You're welcome

    Posted 10 years ago on Saturday May 18, 2013 | Permalink

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