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?
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?
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
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;
}
You're welcome