* Cosmetic changes. Attempting to fix b0rken rendering of main menu
authorArt Cancro <ajc@citadel.org>
Thu, 5 Jun 2003 21:37:37 +0000 (21:37 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 5 Jun 2003 21:37:37 +0000 (21:37 +0000)
  in b0rken IE browser.  Die, Bill, Die.

webcit/ChangeLog
webcit/mainmenu.c

index 6bcf34048b71881ee8fd8416656c54698955adb0..8cc961430df13a69d654b1a928e8a033324c36b6 100644 (file)
@@ -1,4 +1,8 @@
 $Log$
+Revision 410.45  2003/06/05 21:37:37  ajc
+* Cosmetic changes.  Attempting to fix b0rken rendering of main menu
+  in b0rken IE browser.  Die, Bill, Die.
+
 Revision 410.44  2003/06/05 03:52:29  ajc
 * Buncha cosmetic changes
 
@@ -1454,3 +1458,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 16bf61204465162d6d28061a8c317ef362bcbbf6..0e970a688fef7332f92fffaad62d3a0c6775ee67 100644 (file)
@@ -33,12 +33,14 @@ void display_main_menu(void)
 {
        output_headers(1);
 
-       wprintf("<BR>");
+       wprintf("<TABLE>"
+               "<TR><TD COLSPAN=2>\n");
 
        svprintf("BOXTITLE", WCS_STRING, "Basic commands");
        do_template("beginbox");
 
-       wprintf("<TABLE border=0 align=center><TR>");
+       wprintf("\n"
+               "<TABLE border=0 cellspacing=1 cellpadding=1><TR>");
        wprintf("<TD>");        /* start of first column */
 
        wprintf("<UL>");
@@ -87,10 +89,11 @@ void display_main_menu(void)
        wprintf("Log off</B></A><BR>Bye!</LI>\n");
        wprintf("</UL>\n");
 
-       wprintf("</TR></TABLE>\n");
+       wprintf("</TD></TR></TABLE>\n");
        do_template("endbox");
 
-       wprintf("<TABLE WIDTH=100%%><TR VALIGN=TOP><TD>");
+       wprintf("</TD></TR>"
+               "<TR VALIGN=TOP><TD>");
 
        svprintf("BOXTITLE", WCS_STRING, "Interaction");
        do_template("beginbox");