Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form input boxes

Status
Not open for further replies.

scammy

Programmer
Mar 5, 2001
4
0
0
US
Is there any way to change the height of my input boxes? I am using a relatively small font and the input boxes seem way out of proportion to my font.

Any and all help would be appreciated - thanks!
 
it works in IE:


<INPUT TYPE =&quot;TEXT&quot; NAME = &quot;qty&quot; style=&quot;height:50px&quot;> Sylvano
dsylvano@hotmail.com

&quot;every and each day when I learn something new is a small victory...&quot;
 
Thanks, that helped change the input box size, but now I've got a problem - the font is too large. Can anyone help me change how the font displays within the now-smaller input box?
 
Hi Scammy,

Use Styles sheets...

<style type=&quot;text/css&quot;>
<!--

.....
input
{
font-family: verdana, arial, heveltica;
font-size: 11px;
color: #000000;
line-height: 13px;
font-weight: normal;
}
....
//-->
</style>


.....


Your form ....

Good luck!

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top