Hi, On the "change password" page (when you go to edit your users in Django administration) submit button is floated right and it's container (<div class="submit-row">) doesn't wrap around it because submit button hasn't got clear:both set. or something similar.
I suggest using overflow:auto on .submit-row class so strange things wouldn't happen when there are more elements in submit row. (But this has it's own down sides, AFAIK overflow:auto always shows scroll bars on some versions of safari and it would be better to use overflow:hidden for IE and Safari but you might get some elements hidden if your not careful) I'm not shure should i open a ticket for this or not? And do excuse my bad English. --- forms.css 2008-08-08 23:12:20.000000000 +0200 +++ forms_edit.css 2008-09-01 22:25:53.000000000 +0200 @@ -45,7 +45,7 @@ fieldset.monospace textarea { font-family:"Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace; } /* SUBMIT ROW */ -.submit-row { padding:5px 7px; text-align:right; background:white url(../img/admin/nav-bg.gif) 0 100% repeat-x; border:1px solid #ccc; margin:5px 0; } +.submit-row { padding:5px 7px; text-align:right; background:white url(../img/admin/nav-bg.gif) 0 100% repeat-x; border:1px solid #ccc; margin:5px 0; overflow:auto; } .submit-row input { margin:0 0 0 5px; } .submit-row p { margin-top:0.3em; } .submit-row .deletelink { background:url(../img/admin/icon_deletelink.gif) 0 50% no-repeat; padding-left:14px; } -- "Meow" means "woof" in cat. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---