diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-09-20 14:36:53 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-09-20 14:36:53 +0000 |
commit | 4fe5b52a219c7b2d7183003fe3b2a0bea5fa13bd (patch) | |
tree | ab286fd614465387ddad94a05cbf57d14306a4f1 | |
parent | 8ae5e4417a2f397afec5031ea5022aaf4d7cd0e6 (diff) | |
download | brdo-4fe5b52a219c7b2d7183003fe3b2a0bea5fa13bd.tar.gz brdo-4fe5b52a219c7b2d7183003fe3b2a0bea5fa13bd.tar.bz2 |
- Fixing problem with tall logos in chameleon.theme.
-rw-r--r-- | themes/chameleon/chameleon.theme | 2 | ||||
-rw-r--r-- | themes/chameleon/common.css | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index 307d87615..d81ed752e 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -62,7 +62,7 @@ function chameleon_page($content, $title = NULL, $breadcrumb = NULL) { $output .= " </div>\n"; } - $output .= " <table>\n"; + $output .= " <table id=\"content\">\n"; $output .= " <tr>\n"; if ($blocks = theme_blocks("left")) { diff --git a/themes/chameleon/common.css b/themes/chameleon/common.css index cb88e4b1d..20eef4c52 100644 --- a/themes/chameleon/common.css +++ b/themes/chameleon/common.css @@ -66,6 +66,9 @@ br { #help { font-size: 0.8em; } +#content { + clear: both; +} #sidebar-left, #sidebar-right { vertical-align: top; padding: 10px; @@ -115,6 +118,7 @@ br { */ .navlinks { padding: 0em 0.5em 1.5em 0em; + clear: both; } .primary a { font-size: 1.0em; @@ -130,7 +134,7 @@ br { */ #header img { float: left; - padding: 0em 2em 0em 0em; + padding: 0em 2em .5em 0em; } #header { clear: both; |