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!
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!
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
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.
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?