Im trying to add a image above my category list, but its appearing above all titles
cctv.firealarmkent.co.uk/zen
how could I change it so it just appears at the top left of the page only?
This is the code from the left side box file:
<?php
/**
* Common Template - tpl_box_default_left.php
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_box_default_left.php 2975 2006-02-05 19:33:51Z birdbrain $
*/
// choose box images based on box position
if ($title_link) {
$title = '<a href="' . zen_href_link($title_link) . '">' . $title . BOX_HEADING_LINKS . '</a>';
}
//
?>
<div id="bannerFour" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<!--// bof: <?php echo $box_id; ?> //-->
<div style="width: <?php echo $column_width; ?>" id="<?php echo str_replace('_', '-', $box_id ); ?>" class="box">
<div class="box-head">
<div class="box-marker"><?php echo $title; ?></div>
</div>
<div class="box-body">
<?php echo $content; ?>
</div>
</div>
<!--// eof: <?php echo $box_id; ?> //-->


Reply With Quote
