Eiolon Posted January 8, 2009 Share Posted January 8, 2009 I have my username and password boxes set as the same size. I recently installed updates to IE7 and afterwards the password box appears shorter than the username box. In Firefox 3 it appears the same length. Any ideas? <input type="text" name="username" size="25" maxlength="20" /> <input type="password" name="password" size="25" maxlength="40" autocomplete="off" /> Link to comment https://forums.phpfreaks.com/topic/140060-solved-password-box-shorter-in-ie/ Share on other sites More sharing options...
rhodesa Posted January 8, 2009 Share Posted January 8, 2009 instead of size, try css: <input type="text" name="username" style="width:150px;" maxlength="20" /> <input type="password" name="password" style="width:150px;" maxlength="40" autocomplete="off" /> Link to comment https://forums.phpfreaks.com/topic/140060-solved-password-box-shorter-in-ie/#findComment-732797 Share on other sites More sharing options...
Eiolon Posted January 8, 2009 Author Share Posted January 8, 2009 This appears to have fixed it. Thanks. Link to comment https://forums.phpfreaks.com/topic/140060-solved-password-box-shorter-in-ie/#findComment-732828 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.