Attempting to create a simple comments form

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
Pmaurer
Forum Newbie
Posts: 5
Joined: Sat Sep 20, 2008 10:59 pm

Attempting to create a simple comments form

Post by Pmaurer »

Hi Guys,

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.
User avatar
Burrito
Spockulator
Posts: 4715
Joined: Wed Feb 04, 2004 8:15 pm
Location: Eden, Utah

Re: Attempting to create a simple comments form

Post by Burrito »

Moved to client side.
Post Reply