]> code.citadel.org Git - citadel.git/blobdiff - webcit/mainmenu.c
* Started changing some of the top-level tables from 100% width to 99%
[citadel.git] / webcit / mainmenu.c
index 00407c911e33bd7f8954208a283c861d3e8826dd..ad3ca5286b50dfe8a574944847b059cb0b19f5b1 100644 (file)
@@ -1,7 +1,9 @@
-/* $Id$ */
-
-
-
+/*
+ * $Id$
+ *
+ * Displays the "advanced" (main) menu.
+ *
+ */
 
 #include <ctype.h>
 #include <stdlib.h>
@@ -33,7 +35,7 @@ void display_main_menu(void)
 {
        output_headers(1, 1, 1, 0, 0, 0, 0);
 
-       wprintf("<TABLE WIDTH=100%%>"
+       wprintf("<center><TABLE WIDTH=99%%>"
                "<TR><TD COLSPAN=2>\n");
 
        svprintf("BOXTITLE", WCS_STRING, "Basic commands");
@@ -250,7 +252,7 @@ void display_main_menu(void)
                }
                do_template("endbox");
        }
-       wprintf("</TD></TR></TABLE>");
+       wprintf("</td></tr></table></center>");
        wDumpContent(2);
 }