Proposed fix for the /catalog/view/theme/premierdelivered/template/product/category.tpl file, near the top:
Code: Select all
<div class="top">
<h1><?php echo $heading_title; ?></h1>
</div>
<div class="middle">
<?php if ($categories) { ?>
<?php foreach ($categories as $category) { ?>
<div style="float: left; text-align: center; width: 25%; margin:0 0 5px 0; height:180px;"><a href="<?php echo $category['href']; ?>"><img src="<?php echo $category['thumb']; ?>" title="<?php echo $category['name']; ?>" alt="<?php echo $category['name']; ?>" style="margin-bottom: 3px;" /></a><br />
<a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
</div>
<?php } ?>
<div style="clear:both;"> </div>
<?php } ?>
.........