Hi
The password field is side-by-side by default.
I would like to stack it so it's on top of each other. Is this possible?
For example, instead of:
create a pw: confirm your pw:
it should be:
create a pw:
confirm your pw:
Hi
The password field is side-by-side by default.
I would like to stack it so it's on top of each other. Is this possible?
For example, instead of:
create a pw: confirm your pw:
it should be:
create a pw:
confirm your pw:
Hi,
Try adding the following to your theme's stylesheet
.gform_wrapper .ginput_complex .ginput_right {
clear: left;
float: left;
}
the only caveat is that as it is the above will also affect similar field types such as the email field with confirmation, if you only want to affect the password field then you would have to add a custom CSS class name to the fields advanced tab and to the rule like so
.gform_wrapper .my_custom_class .ginput_complex .ginput_right {
clear: left;
float: left;
}
Regards,
Richard