I would like for my label to be two lines, is this possible? I tried a simple
in the label field but it simply showed the code.
Thank you
I would like for my label to be two lines, is this possible? I tried a simple
in the label field but it simply showed the code.
Thank you
This is related, but I would also like to have a link in my label. Is HTML possible in the field labels?
HTML isn't allowed in the field labels. Your best bet is to use CSS and set a specific width on the label to force it to wrap. For example:
[css]
body .gform_wrapper form li#field_20_1.gfield label.gfield_label {
color: red;
max-width:100px;
}
screenshot: http://i.imgur.com/rBSGoht.jpg
Got it, thanks for the prompt response!
I skipped over the "description" field initially, but I see that the description field takes HTML and I can have it show up beneath the field label. This does what I want it to as far as having links and info beneath the label.
Right on, glad you got it working.