Hi, I'm kind a newb at all this so please be gentle on me.
I'm running 1.3.0.2 and am trying to get and footer image for my sideboxes. I'm using the overides etc.. thats all sweet.
I want to put background images in my sideboxes much like futre zen template and can do the header and middlie images sweet. But if a put the bottom image in the BoxContent the text from the sidebox goes over the image.
So i want to create a footer part to the sideboxes to contain my image.
I found a closed thread that had some instructions and have tried those to no avail, the instruction were from dr byte.
Here what I've done.
My tpl_box_default_left.php now looks like this.
if ($title_link) {
$title = '<a href="' . zen_href_link($title_link) . '">' . $title . BOX_HEADING_LINKS . '</a>';
}
//
?>
<!--// bof: <?php echo $box_id; ?> //-->
<div class="leftBoxContainer" id="<?php echo str_replace('_', '-', $box_id ); ?>" style="width: <?php echo $column_width; ?>">
<h3 class="leftBoxHeading" id="<?php echo str_replace('_', '-', $box_id) . 'Heading'; ?>"><?php echo $title; ?></h3>
<?php echo $content; ?>
<div class="leftBoxFooter" id="<?php echo str_replace('_', '-', $box_id) . '-footer'; ?>"></div>
</div>
<!--// eof: <?php echo $box_id; ?> //-->
And put this in my css
.leftBoxFooter {
background-image : URL('../images/sidebox_bottom.gif');
background-repeat: no-repeat;
}
But as yet nothing has changed on the site, help??




