diff options
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 66ea4a4ac..8c4148a48 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -25,11 +25,11 @@ class BaseTheme { $output .= "<html><head><title>". $title ? $title : variable_get(site_name, "drupal") ."</title>"; $output .= theme_head($main); $output .= "</head><body bgcolor=\"$this->background\" text=\"$this->foreground". theme_onload_attribute(). "\">"; - $output .= "<table border=\"0\" cellspacing=\"4\" cellpadding=\"4\"><tr><td valign=\"top\" width=\"170\">"; + $output .= "<table border=\"0\" cellspacing=\"4\" cellpadding=\"4\"><tr><td style=\"vertical-align: top; width: 170px;\">"; print $output; $this->box(t("Navigation"), @implode("<br />", link_page())); theme_blocks("all", $this); - print "</td><td valign=\"top\">"; + print "</td><td style=\"vertical-align: top;\">"; } |