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" /> Quote Link to comment 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" /> Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.