I want to add page suffix for the whole page, but within Gavick template it only adds within the content. I have added an body suffix. And I want to have a different background image for the whole page but it only show up within the content.
I guess I have to do something in the deafult.php. I guess these lines:
- Code: Select all
$tpl_page_suffix = '';
if($this->page_suffix != '') {
$tpl_page_suffix = ' class="'.$this->page_suffix.'"';
}
?>
- Code: Select all
<body<?php echo $tpl_page_suffix; ?>>
But how should I fix it?