Link to home
Start Free TrialLog in
Avatar of mreevs
mreevs

asked on

Assigning Box sizes

Hello,

I'm sure this is a very easy question the answer but I cant seem to find anything that will work for me.

The code below is what I have for changing a record on my site. I have the width set to 30 charters but I want the box to be about 4 lines deep. I have tried several different tags to try and get it that way but nothing seems to work.

Any help would be greatly appreciated.
<tr>
       <td>Description:</td>
	<td bordercolor=EEEEEE><input type="text" size="30" width="2" value="<? echo "$description"; ?>" name="description" /></td>
</tr>

Open in new window

Avatar of sunithnair
sunithnair

What do you mean by 4 lines deep? If you mean height then you can increase the height of the box but if you want the description to appear in 4 lines then you can use a textarea
Avatar of mreevs

ASKER

I want to have 4 lines of text.  How do I add the textarea command into previously stated code?
<textarea rows="4">your text</textarea>
ASKER CERTIFIED SOLUTION
Avatar of sunithnair
sunithnair

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial