diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/chameleon/chameleon.theme | 2 | ||||
-rw-r--r-- | themes/marvin/marvin.theme | 8 | ||||
-rw-r--r-- | themes/xtemplate/xtemplate.inc | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index bbfb1c93e..3389b27af 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -67,7 +67,7 @@ function chameleon_header($title = "") { } if ($message = drupal_get_message()) { - $output .= "<b>". t("Status") ."</b>: ". $message->message ."<hr />"; + $output .= "<strong>". t("Status") ."</strong>: ". $message->message ."<hr />"; } return $output; 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"; diff --git a/themes/xtemplate/xtemplate.inc b/themes/xtemplate/xtemplate.inc index 72afbb4e8..6c89be93d 100644 --- a/themes/xtemplate/xtemplate.inc +++ b/themes/xtemplate/xtemplate.inc @@ -414,7 +414,7 @@ function get_error() { function set_error($str) { - $this->ERROR="<b>[XTemplate]</b> <i>".$str."</i>"; + $this->ERROR="<strong>[XTemplate]</strong> <i>".$str."</i>"; trigger_error($this->get_error()); } @@ -452,7 +452,7 @@ function getfile($file) { fclose($fh); } else { $this->set_error("[$file] does not exist"); - $file_text="<b>__XTemplate fatal error: file [$file] does not exist__</b>"; + $file_text="<strong>__XTemplate fatal error: file [$file] does not exist__</strong>"; } $this->filecache[$file]=$file_text; } |