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.

Width of Address Field

  1. Hello, I can't seem to find where I can change the number of characters allowed in the address field which will change the width. The fields for the address are really long. Any help would be appreciated. Thank you!

    http://txaee.org/wordpress/?page_id=82

    Posted 13 years ago on Wednesday August 31, 2011 | Permalink
  2. The address field has a pre-defined percentage width. There's no setting to adjust the number of characters/field width that way.

    You can do this by resizing the parent list element with CSS easily enough. Just add this to the end of your theme stylesheet and tweak it as necessary to fit your layout.

    [css]
    body .gform_wrapper ul li#field_3_6 {
        width: 50%;
    }

    screenshot: http://bit.ly/n5pGsY

    This may also be helpful for other CSS customizations.

    http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples

    Posted 13 years ago on Wednesday August 31, 2011 | Permalink
  3. There is no setting. The Address Field automatically takes up the available space for the container it is in. If you want to make the Address field smaller you need to either use CSS to make the content container smaller, or use CSS to target that specific field and adjust it's widget.

    Posted 13 years ago on Wednesday August 31, 2011 | Permalink
  4. This worked:

    [css]
    body .gform_wrapper ul li#field_3_6 {
        width: 50%;
    }

    Can you tell me where the settings are for the note boxes to change the width?

    Posted 13 years ago on Thursday September 1, 2011 | Permalink