From: Thierry Pasqualier Date: Mon, 29 Jan 2007 21:38:39 +0000 (+0000) Subject: Somes changes in HTML/CSS of banner information text X-Git-Tag: v7.86~3608 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=20253aa51ce03b31709570523bf8be22bf737093;p=citadel.git Somes changes in HTML/CSS of banner information text --- diff --git a/webcit/static/webcit.css b/webcit/static/webcit.css index 987410bce..8dc0b2e6e 100644 --- a/webcit/static/webcit.css +++ b/webcit/static/webcit.css @@ -71,9 +71,10 @@ body { color: #FFFFEE; } -.room_banner div { +.room_banner p { font-size: 8pt; color: #FFFFEE; + text-align: center; } #banner ul { diff --git a/webcit/sysmsgs.c b/webcit/sysmsgs.c index 7de399879..879b85150 100644 --- a/webcit/sysmsgs.c +++ b/webcit/sysmsgs.c @@ -40,7 +40,7 @@ void display_edit(char *description, char *check_cmd, svprintf("BOXTITLE", WCS_STRING, _("Edit %s"), description); do_template("beginbox"); - wprintf("
"); + wprintf("

"); wprintf(_("Enter %s below. Text is formatted to " "the reader's screen width. To defeat the " "formatting, indent a line at least one space."), description); @@ -58,7 +58,7 @@ void display_edit(char *description, char *check_cmd, wprintf(" "); wprintf("
\n", _("Cancel")); - wprintf("

\n"); + wprintf("

\n"); do_template("endbox"); wDumpContent(1); }