Looking to do a form label with 2 lines

Anonymous
Not applicable

Looking to do a form label with 2 lines

Hello,

I am looking to do a form label with 2 lines however <br> isn't working in the Form Editor field label section.  The fields are set to "above" and I want it to look like this below:

Name
=============

Email
Please provide a valid email          <-----------------------Here
=============

Does anyone have any idea how to do this?

Tags (1)
2 REPLIES 2
Anonymous
Not applicable

Re: Looking to do a form label with 2 lines

Are you trying to do this so you can insert 'Please provide a valid email' on a separate line? You could change your email field label to include that language in it. That would be the quickest option.

Otherwise you're going to have to work with custom javascript. This is the code I use to put spaces in between my fields, although I'm not sure that is going to solve your issue in this case.

<script src="/js/public/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
 var $jQ = jQuery.noConflict();

 $jQ(document).ready(function() {
   $jQ('#Field Name').parents('li').after("<li>Type desired text here </li>");
 });
</script>
Anonymous
Not applicable

Re: Looking to do a form label with 2 lines

Really appreciate you responding Pierce, what I'm looking for is the line break between "Email" and "Please provide a valid email".  I can not see where this can be done through the field label because it doesn't accept HTML.  Perhaps I just need to add spaces until it's on a seperate line?

Thanks!