How do you adjust the input size in html code?
On September - 29 - 2008
I have set up an autoresponder at one of my sites, but i want to enlarge the input size of one of the boxes to accept large submission articles. Any suggestions?
I'm not following exactly how your site is set up. If you have set up a text area for text to be typed or pasted, here is the code:
<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA>
Adjust the ROWS and COLS to match your need. Also, see if there is any scripting that limits the max length or size that needs to be adjusted.
Good luck!


BSOD Says:
You can specify the size of your INPUT box by changing the SIZE value. The value you specify within your SIZE attribute will determine the width of your input box within your web page form
ie: <INPUT type="text" SIZE="10">
References :
Posted on September 19th, 2007 at 11:14 am
Latte Says:
http://www.devguru.com/technologies/html/6486.asp
use textarea as an input field
References :
Posted on September 19th, 2007 at 11:15 am
Thomas K Says:
I'm not following exactly how your site is set up. If you have set up a text area for text to be typed or pasted, here is the code:
<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA>
Adjust the ROWS and COLS to match your need. Also, see if there is any scripting that limits the max length or size that needs to be adjusted.
Good luck!
References :
http://www.htmlgoodies.com/tutorials/forms/article.php/3479121
http://www.rgagnon.com/jsdetails/js-0091.html
Posted on September 19th, 2007 at 11:18 am
joyaz711 Says:
Textareas don't have any limit to the number of characters they will accept. So even though it might not be visible in the form component, the text should be submitted okay.
Not sure if you're using a textarea element or not - I think we need more info actually.
Joyce
http://www.designbyjoyce.com/
References :
Posted on September 19th, 2007 at 11:57 am