How can I adjust my form field box height?

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
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?
 
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?
 
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?
| >
| >
| >
 
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.
 
Back
Top