
Originally Posted by
BUK24hours
Yes, thats it. I don't particularly like the gap to the right of the icon where nothing actually belongs there. Can I put a rotating banner or something to the right and if so which template or code should I use.
Thanks

Ok, it will take some doing, but here's the process:
Open up inlcudes/templates/YOUR_TEMPLATE/common/tpl_main_page.php
You will cut this code out (to be pasted in another file shortly):
Code:
<?php
if (SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerThree" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<?php
}
}
?>
Then open up includes/templates/YOUR_TEMPLATE/templates/tpl_index_product_list.php, and paste the above code right after this:
Code:
<h1 id="productListHeading"><?php echo $breadcrumb->last(); ?></h1>
Also open up includes/templates/YOUR_TEMPLATE/templates/tpl_index_categories.php, and paste the same code right after this:
Code:
<h1 id="indexCategoriesHeading"><?php echo $breadcrumb->last(); ?></h1>
Then, add this to your css:
#bannerThree {float:right;}
Then you go to "Tools" "Banner Manager", and add the banner that you want.
Then go to "Configuration", "Layout Settings", and turn on the Banner 3 section by entering the group the banner you added is in. (if you added it to "BannersAll", you enter "BannersAll" in "Banner Display Groups - Header Position 3"
Hope that helps!
Bookmarks