The link you posted doesnt work, but I think the probally is to do with how IE is made to handle the password fields, you can solve this using css..
HTML Code:
<style type="text/css">
input.field {
width: 200px;
}
</style>
<input type="text" class="field" />
<input type="password" class="field" />
OR
HTML Code:
<input type="text" style="width: 200px;" />
<input type="password" style="width: 200px;" />
Hope this helps 
Last edited by Dark-Skys99; 12-08-2005 at 08:42 PM..
|