diff options
-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; |