Hi,
I want to make textfields height smaller,
how can this be done?
thanksBy textfield, do you mean input type="text" or <textarea>?
For the first, you can either set all input fields, like this:
input {
height: 10px;
}
Or, give the input type="text" fields a class, and do it like this:
.classname {
height: 10px;
}
With your input fields looking like this: <input type="text" name="foo" class="classname"
For textareas, it is the same as the first method for setting input fields:
textarea {
height: 10px;
}
I want to make textfields height smaller,
how can this be done?
thanksBy textfield, do you mean input type="text" or <textarea>?
For the first, you can either set all input fields, like this:
input {
height: 10px;
}
Or, give the input type="text" fields a class, and do it like this:
.classname {
height: 10px;
}
With your input fields looking like this: <input type="text" name="foo" class="classname"
For textareas, it is the same as the first method for setting input fields:
textarea {
height: 10px;
}