Enter text above a form field

Hello,I’m working towards putting some instructions above some of the fields in the form that will always be visible, is there anyway to do this? Thank You
Here is where the custom text needs to go above the field.

Just use the Page Render event of the site (add/edit) and use$this->FIELDNAME->CustomMsg .= “This is my additional text”;The code use the bootstrap class help-block. Just replace the FIELDNAME to your needs. It works great with the code that is created by default and you don’t have to create your own templates.

You can also add a link to your page here, just for a little more help on this, who is searching for it like me.$this->Client->CustomMsg .= “Your message here, Click here”;

How can I get the text to appear above a checkbox?
with the code given here, the text is below the checkbox

You may use jQuery prepend in order to insert your text at the beginning of each element in the set of matched elements. Just Google “jquery prepend” for more info and examples.

I do not understand much code but I want to create capos to complete a form on my website. Can someone help me?