summaryrefslogtreecommitdiff
path: root/themes/marvin/marvin.theme
diff options
context:
space:
mode:
Diffstat (limited to 'themes/marvin/marvin.theme')
-rw-r--r--themes/marvin/marvin.theme8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/marvin/marvin.theme b/themes/marvin/marvin.theme
index 13cb00e63..f01c49a9e 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 .= "<div id=\"help\">$help</div>";
+ $output .= "<small>$help</small><hr />";
}
if ($message = drupal_get_message()) {
- $output .= "<div class=\"message\"><strong>". t('Status') ."</strong>: $message->message</div>";
+ $output .= "<strong>". t("Status") ."</strong>: ". $message->message ."<hr />";
}
return $output;
@@ -118,8 +118,8 @@ function marvin_comment($comment, $link = "") {
$output .= " <tr>\n";
// Subject:
- $output .= " <td style=\"text-align: right; width: 5%;\"><b>". t("Subject") .":</b></td>\n";
- $output .= " <td style=\"width: 80%;\"><b><div style=\"color: #666699;\">$comment->subject</div></b></td>\n";
+ $output .= " <td style=\"text-align: right; width: 5%;\"><strong>". t("Subject") .":</strong></td>\n";
+ $output .= " <td style=\"width: 80%;\"><strong><div style=\"color: #666699;\">$comment->subject</div></strong></td>\n";
$output .= " </tr>\n";