summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-15 19:06:25 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-15 19:06:25 +0000
commiteb030cb9d8839bd08cb2bd1e4f954efe37047303 (patch)
treedcd7f9e913cbf5707208bfc36376e38632eb05c8 /includes/theme.inc
parenta0e0ea93371646a28c3dc71b0b077035ab6569d6 (diff)
downloadbrdo-eb030cb9d8839bd08cb2bd1e4f954efe37047303.tar.gz
brdo-eb030cb9d8839bd08cb2bd1e4f954efe37047303.tar.bz2
- Improvements: XHTML-ifications. Patch by GmbH.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc4
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;\">";
}