Forum Moderators: open
I need help using forms in dreamweaver. After i put my table of informations into a form, there a extra cell below like creating a extra row.
The problem you describe can come from a number of sources and sometimes pops up with a relatively small form which needs to "fit in" to a space in your design (e.g a search box).
Here are some things to check:
1) White space in code. Try moving the closing form tag immediately after the closing table tag. Some browsers react badly to white space in code.
2) I vaguely remember having a similar problem and discovering I had put the form inside an element that wasn't allowed. So validate your html. Also try changing the container for the form even if it does validate (e.g. from <td> to <div>, perhaps).
3) Check that none of your styling is affecting the table or form tags. If you have no styling then try styling the margins or padding of the table, form, or surrounding container. This should be one of your first checks, btw.