Web Hosting Talk







View Full Version : Input box... causing bkgd image to tile


Southernman
04-15-2003, 11:54 PM
Is there a way to decrease the height, of an input box?

I've spent the last 1 1/2 hours, doing a google for input box howto's, nothing I found addressed constraining the height of them?

harmonic
04-16-2003, 12:12 AM
CSS, try 'height' but, also try 'font-size', because the input's size always depends on the text's size.

sasha
04-16-2003, 12:41 AM
You can gain couple pixels by using CSS border too,

Southernman
04-16-2003, 12:46 AM
Thanks harmonic and my pal sasha! I'll give it a whirl right now.

digitok
04-16-2003, 03:09 AM
<input type="text" style="height: 16px;">

I usually use 16 pixels, but you can use whatever you want.