diff options
-rw-r--r-- | themes/marvin/marvin.css | 12 | ||||
-rw-r--r-- | themes/marvin/marvin.theme | 4 |
2 files changed, 9 insertions, 7 deletions
diff --git a/themes/marvin/marvin.css b/themes/marvin/marvin.css index f66760372..921f5fd8a 100644 --- a/themes/marvin/marvin.css +++ b/themes/marvin/marvin.css @@ -39,6 +39,10 @@ p { table { font-size: 1em; } +#help { + font-size: 0.9em; + margin-bottom: 1em; +} .calendar .day-today { background-color: #ccc; } @@ -79,6 +83,9 @@ table { margin: 0; padding: 5px; } +.message { + margin-bottom: 1em; +} .node h2.title { background-color: #fff; border: solid 1px #999; @@ -102,9 +109,4 @@ table { .node .links { padding: 1em; } -#forum .title { - font-weight: bold; - color: #404040; - padding-bottom: 1em; -} diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme index 404e692d3..13cb00e63 100644 --- a/themes/marvin/marvin.theme +++ b/themes/marvin/marvin.theme @@ -62,11 +62,11 @@ function marvin_header() { } if ($help = menu_get_active_help()) { - $output .= "<small>$help</small><hr />"; + $output .= "<div id=\"help\">$help</div>"; } if ($message = drupal_get_message()) { - $output .= "<b>". t("Status") ."</b>: ". $message->message ."<hr />"; + $output .= "<div class=\"message\"><strong>". t('Status') ."</strong>: $message->message</div>"; } return $output; |