Multiple Rows in Text field

MIckeyP 26 Feb, 2010
Want to create a large text box for users to input data. But can not get the html to work. Is what I have put in below correct ??? :?

<input type="text" name="text_10" id="text_10" title="" size="150" rows="10" cols="10"
GreyHead 26 Feb, 2010
Hi MickeyP,

No. it isn't correct. The tab isn't closed and 'size' isn't a valid attribute. Please see here for the specification.

Bob
MIckeyP 08 Mar, 2010
This is my completed code

<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width:150px;">Description</label>
<input class="cf_inputbox required" maxlength="300" title="" id="text_10" name="text_10" type="text" textarea rows="4" cols="20"/>

I have also tried without success 😟

<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width:150px;">Description</label>
<input class="cf_inputbox required" maxlength="300" title="" id="text_10" name="text_10" type="text" rows="4" cols="20"/>
GreyHead 08 Mar, 2010
Hi MickeyP,

Please check the link in my last post for the 'textarea' specification.

Bob
This topic is locked and no more replies can be posted.