- Fixed bug #6048: display footer in theme chameleon.
parent
a283a3b7b8
commit
f54aab6a3e
|
@ -81,6 +81,10 @@ function chameleon_page($content, $title = NULL, $breadcrumb = NULL) {
|
|||
$output .= $content;
|
||||
$output .= "\n<!-- end content -->\n";
|
||||
|
||||
if ($footer = variable_get('site_footer', '')) {
|
||||
$output .= " <div id=\"footer\">$footer</div>\n";
|
||||
}
|
||||
|
||||
$output .= " </td>\n";
|
||||
|
||||
if ($blocks = theme_blocks("right")) {
|
||||
|
@ -89,6 +93,7 @@ function chameleon_page($content, $title = NULL, $breadcrumb = NULL) {
|
|||
|
||||
$output .= " </tr>\n";
|
||||
$output .= " </table>\n";
|
||||
|
||||
$output .= theme_closure();
|
||||
$output .= " </body>\n";
|
||||
$output .= "</html>\n";
|
||||
|
|
|
@ -70,7 +70,11 @@ br {
|
|||
vertical-align: top;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
#footer {
|
||||
font-size: 0.8em;
|
||||
padding-top: 2em;
|
||||
text-align: center;
|
||||
}
|
||||
/* region-specific tags */
|
||||
.title {
|
||||
margin: 0 0 .25em 0;
|
||||
|
|
Loading…
Reference in New Issue