From a31615b6cc60be25df358faf649c4d3ec16c6611 Mon Sep 17 00:00:00 2001 From: Thierry Pasqualier Date: Sat, 25 Aug 2007 19:02:28 +0000 Subject: [PATCH] Advanced screen : removed a HTML table --- webcit/mainmenu.c | 19 ++++++++----------- webcit/static/webcit.css | 6 ++++++ 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/webcit/mainmenu.c b/webcit/mainmenu.c index e595709a4..cb5909e04 100644 --- a/webcit/mainmenu.c +++ b/webcit/mainmenu.c @@ -24,12 +24,8 @@ void display_main_menu(void) svprintf("BOXTITLE", WCS_STRING, _("Basic commands")); do_template("beginbox"); - wprintf("\n" - "" - "" - "
"); /**< start of first column */ - - wprintf("\n"); /* start of second column */ + /* start of second column */ - wprintf(""); /* start of third column */ + /* start of third column */ - wprintf("
\n"); + wprintf(" "); + do_template("endbox"); wprintf("" diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index f32a43b06..a07d1a7e2 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -950,6 +950,12 @@ div.auto_complete ul strong.highlight { text-align: center; } +.boxcontent .col1, .boxcontent .col2 { + float: left; + width: 33%; +} + + #login_screen { margin: 3%; } -- 2.39.2