* Replaced all the "centered 99% tables" with 100% width tables wrapped
[citadel.git] / webcit / useredit.c
index a1927f0d03a934991b82b9326672b8ee23889b94..5439ff0f90291d774fcb79d20637b7a2ed72e2c7 100644 (file)
@@ -291,7 +291,8 @@ void display_edituser(char *supplied_username, int is_new) {
        wprintf("</SPAN></TD></TR></TABLE>\n");
        wprintf("</div>\n<div id=\"content\">\n");
 
-       wprintf("<center><table border=0 width=99%% bgcolor=\"#ffffff\"><tr><td>\n");
+       wprintf("<div style=\"margin-right:1px\">"
+               "<table border=0 width=100%% bgcolor=\"#ffffff\"><tr><td>\n");
        wprintf("<FORM METHOD=\"POST\" ACTION=\"/edituser\">\n"
                "<INPUT TYPE=\"hidden\" NAME=\"username\" VALUE=\"");
        escputs(username);
@@ -363,8 +364,7 @@ void display_edituser(char *supplied_username, int is_new) {
                "<br /><br /></FORM>\n");
 
        wprintf("</CENTER>\n");
-       wprintf("</td></tr></table></center>\n");
-
+       wprintf("</td></tr></table></div>\n");
        wDumpContent(1);
 
 }