How can I adjust my form field box height?

G

Guest

I have a form with default fields and I want to resize the height of my field
boxes but I dont see any way to resize the box height?
 
J

John Malone

A text box is one line..
If you need more than that try using a "text area"
Then change the height by changing the number of rows.

John Malone
==================
|I have a form with default fields and I want to resize the height of my
field
| boxes but I dont see any way to resize the box height?
 
G

Guest

Hello John, Actually I am referring to the pixel height of a single text box
field. Say the pixel height is 25 and I want to change it. How do I reduce
it to 12 pixels so it fits the font size?
 
S

Stefan B Rusynko

Marginally possible w/ CSS as
input {
height: 12px;
}

But your form fonts usually will not scale and will not be readable
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Hello John, Actually I am referring to the pixel height of a single text box
| field. Say the pixel height is 25 and I want to change it. How do I reduce
| it to 12 pixels so it fits the font size?
|
| "John Malone" wrote:
|
| > A text box is one line..
| > If you need more than that try using a "text area"
| > Then change the height by changing the number of rows.
| >
| > John Malone
| > ==================
| > | > |I have a form with default fields and I want to resize the height of my
| > field
| > | boxes but I dont see any way to resize the box height?
| >
| >
| >
 
A

Andrew Murray

you can do that with styles, such as

<input type="text" style="height:25; width=50px">

If you right click the field and go to "Style" then "Format" and
"Position..." then you can change such things as the height.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top