Lift this section of code out of includes/templates/default_template/common/tpl_header.php:
Code:
<?php
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php
}
}
?>
</div>
Remember to remove it from the tpl_header file. Then you need to insert it into includes/templates/YOUR_CUSTOM_TEMPLATE/common/tpl_main_page.php between the end of bread crumbs comment and the start of banner three:
Code:
<!-- eof breadcrumb -->
insert here
<?php
if (SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {