This Contact Form that I’m using looks fine except that the Your Name field box is stacked right on top of the Email Address field box. How can I put a blank line (or space) in between them? Thanks.
The real answer is WHAT THE <snip /> is this, 1997?!? (that’s a joke)
Jokes aside, there is NO reason to be using a table there. … and if you are resorting to non-breaking spaces to pad stuff in, you’re going about it all wrong. Much less that if you are building a form there are tags you SHOULD be using that are nowhere to be found in your version – specifically LABEL and FIELDSET. Even if you were to use a table you also would NOT have every cell being a TD, since things like “comments:” or “Your name:” would be HEADINGS, which means TH.
It’s also wasteful markup since if every single one of your inputs before the textarea are getting the same width, that goes in the external stylesheet instead of wasting time saying it in the markup on every single one of them.
The markup for that type of form element SHOULD be something more like this:
Float the labels, pad-left and absolute positon the spans inside the labels, margin the inputs… ALL of which should be done in your EXTERNAL stylesheet.