How to remove the field label completely

Anonymous
Not applicable

How to remove the field label completely

I have a form where I have deleted all of the field labels and instead, have included them in the hint text. When I delete the field label text, there is still some space that is left over, which leaves the field box indented a bit. How can I make my fields completely left justified?
Tags (1)
1 REPLY 1
Anonymous
Not applicable

Re: How to remove the field label completely

Just use CSS on your form through the Custom CSS option for Forms 2.0

label {
   display:none;
}

input[type="text"] {
  margin-left:-10px;
}