-
Question 1
----------
I want to change the size of the input text field in the code segment below:
<input type="Password" name="txtPassword" size="10" ></TR>
The length can be amended using the size="" property. Is it possible to change the height of the input text field ?
Question 2
----------
I ALSO want to change the size of the Login Button:
<input type="submit" name="btnLogin" value="Login">
How can I achieve this ?
nmretd.
-
use the style tag
eg:
<INPUT id=password1 name=password1 type=password style="HEIGHT: 124px; WIDTH: 155px">
be careful though because I think it's an IE only thing.