Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
it's because you have the attribute "cols", but you don't say how many columns the textarea should have.
It looks like you pasted the id into the cols.
Code:
cols id="message"='20'
you should have it
HTML Code:
<textarea cols="20" id="message" rows='10' name='Message' ></textarea>
__________________
Only a biker knows why a dog sticks his head out the window.
|