Link to home
Start Free TrialLog in
Avatar of DS928
DS928Flag for United States of America

asked on

Top Alignment in a Textbox

I have a text input field in a form.  I want the type to align top left.  Now its in the middle left.  How can I fix that?

<td><input name="item4" type="text" class="FreeForm" valign="top" id="item4" value="Type Your Order Here" size="200" />

Open in new window

Avatar of Gary
Gary
Flag of Ireland image

Do you mean like this
http://jsfiddle.net/8PVdh/
<td><input name="item4" type="text" class="FreeForm" valign="top" id="item4" value="Type Your Order Here" size="200" style="text-align: left; padding-top: 0px;" />

Open in new window


try this...
Avatar of DS928

ASKER

Thank you.
I tried both and neither one did it.  Here is the page...
http://www.menuhead.com/makeorder.php
it's the bottom text field.  "Customer Order"
You want a textarea not an input.
Avatar of DS928

ASKER

Just got your order! LOL!  So how do I do this?

<td><input name="item4" type="text" class="FreeForm" valign="top" id="item4" value="Type Your Order Here" size="200" />

Open in new window

If your text box has a height set to it so it is larger than the text, the text will always be centered vertically in the box, you can't change it, and messing with padding or margins will cause issues cross browser. If you want your textbox to be taller but have the text vertically aligned to the top, use <textarea></textarea> instead of <input type="text"></input>
hah, didn't see GaryC123's answer, started to answer, went to lunch and submitted.
<textarea rows="6" columns="14"></textarea>

Open in new window


try something like this...

change the rows and columns as per your needs..
Avatar of DS928

ASKER

Tried this....quite a mess!

<td><textarea name="item4" id="item4" value="Type Your Order Here" size="200" /textarea>
                                </td>

Open in new window

A text type input field is for single line input.  As it appears you are looking for multi-line input then you should be doing a Gary says and use a text area.

An input is not going to allow multi-line, and the text is not going to wrap.

Please spend a few minutes on a site with basic HTML tutorials to learn the basic use of the form elements.

Cd&
You missed the starting tag

<td><textarea name="item4" id="item4" value="Type Your Order Here" size="200" </textarea>
                                </td>
<td><textarea name="item4" id="item4" value="Type Your Order Here" rows="4" columns="15" /textarea>
                                </td>

Open in new window


try something like this...
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

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
Avatar of DS928

ASKER

This works....

<td><textarea rows="4" cols="50" name="item4" id="item4" value="Type Your Order Here">Type Your Order Here</textarea>
                                </td>

Open in new window

<td>
<textarea name="item4" id="item4" value="Type Your Order Here" rows="6" cols="20"> </textarea>
</td> 

Open in new window


Text area do not have size as an attribute... use cols and rows instead...
Check here...
http://www.w3schools.com/tags/tag_textarea.asp