The field labels in my forms are wrapping after two or three words, like:
How long
have you
known the
applicant?
Is there any way to remove that wrapping feature (or bug)? Thanks so much!
The field labels in my forms are wrapping after two or three words, like:
How long
have you
known the
applicant?
Is there any way to remove that wrapping feature (or bug)? Thanks so much!
By the way, an example is here:
http://globalministriesonline.com/join/application-form/ministerial-endorsement-form/
This is because your theme has Gravity Form specific styles in it. See this screenshot. The width here is set to 80px wide. That's why your wrapping is occurring. You will either have to remove that width declaration, or try dropping this into your theme's stylesheet:
[css]
.gform_wrapper .top_label .gfield_label {
width: auto;
}