Is it possible to change the width and height of textarea.If means please tell me how to do that.
The following is my code.
PHP Code:
<tr>
<td>
Question<font color="red">*</font>
</td>
<td>
:
</td>
<td><textarea name="ques1" id="ques1" cols="25" rows="5" style="resize:none;"></textarea>
</td>
<td>
<table>
<tr>
<td width="10">
<div style="background-image:url(img/mic1_30.jpg); width:30px; height:25px;" >
<input type="file" id="quest_wav1" name="quest_wav1" style="opacity:0;-moz-opacity:0 ;filter:alpha(opacity: 0);" size="1" />
</div>
</td>
</tr>
<tr>
<td width="10">
<div style="background-image:url(img/img1.jpeg); width:30px; height:30px;" >
<input type="file" id="quest_img1" name="quest_img1" style="opacity:0;-moz-opacity:0 ;filter:alpha(opacity: 0);" size="1" />
</div>
</td>
</tr>
</table>
</td>
<td> </td>
</tr>
<tr>
<td>Page No<font color="red">*</font></td><td>:</td>
<td><input type="text" name="pno" id="pno" size="16" onkeypress="return isNumberKey(event, this.value)"/></td>
<td>Chapter No<font color="red">*</font></td><td>:</td>
<td><input type="text" name="cno" id="cno" size="16" onkeypress="return isNumberKey(event, this.value)"/></td>
</tr>
Please tell me i've to increase the size of textarea for the question field only. Please tell me how to do that.