I've been trying to fix my code pertaining to the comments form that I want on the sidebar of my website:
http://chevelleonline.net/wb/
Right now the code will let me edit attributes but not all that much is changing with the form itself, I was hoping to simply be able to edit the code so that I could make the input area smaller as to not conflict with the main page area. Right now, the code either extends the form into the main page area (firefox) or it throws all the main page information right below it (internet explorer).
using this code:
Code: Select all
<form action="feedback.php" method="post">
<table border="0" cellpadding="0" cellspacing="0" summary="feedback form">
<tr><td><label for="tswname">Name</label>:</td><td><input type="text" name="name" id="tswname" size="5" /></td></tr>
<tr><td><label for="tswemail">Email address</label>:</td><td><input type="text" id="tswemail" name="email" size="5" /></td></tr>
<tr>
<td colspan="0">
<label for="tswcomments">Comments</label><br />
<textarea rows="0" cols="0" name="comments" id="tswcomments" ></textarea>
</td>
</tr>
<tr>
<td align="center" colspan="0">
<input type="submit" value="Send Feedback" /><br />
</td>
</tr>
</table>
</form>most of the attributes are at 0 and still are being indented or are not conforming to where I really want them.