Somes changes in HTML/CSS of banner information text
authorThierry Pasqualier <thierry@uncensored.citadel.org>
Mon, 29 Jan 2007 21:50:30 +0000 (21:50 +0000)
committerThierry Pasqualier <thierry@uncensored.citadel.org>
Mon, 29 Jan 2007 21:50:30 +0000 (21:50 +0000)
webcit/static/webcit.css
webcit/sysmsgs.c

index 8dc0b2e6e6c7052ce231dcc805aef4c05f64b477..b98fc76556bdc503cbceb98010c37ec050db86e6 100644 (file)
@@ -71,7 +71,7 @@ body {
         color: #FFFFEE;
 }
 
-.room_banner p {
+.room_banner div {
         font-size: 8pt;
         color: #FFFFEE;
         text-align: center;
index 879b851507f80210f8a0c5673eae63880fcf8742..86a5e6fed5cdda72e0f93885e453952141abf744 100644 (file)
@@ -40,7 +40,7 @@ void display_edit(char *description, char *check_cmd,
        svprintf("BOXTITLE", WCS_STRING, _("Edit %s"), description);
        do_template("beginbox");
 
-       wprintf("<p>");
+       wprintf("<div>");
        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("&nbsp;");
        wprintf("<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\"><br />\n", _("Cancel"));
 
-       wprintf("</FORM></p>\n");
+       wprintf("</FORM></div>\n");
        do_template("endbox");
        wDumpContent(1);
 }