Quote Originally Posted by Decostyle View Post
Hi Clyde,

I've been using your wonderful template for sometime now. I wanted to add a banner at the bottom of the template. Followed instructions below but it would not show.

The only time the wide-banners will show is if I set it to footer position 1. On footer position 2, it breaks up the bottom, but it won't show up on footer position 3.

Any ideas?

Thanks!
Open includes/templates/cold_steel/common/tpl_main_page.php

Find the following section of code

PHP Code:
<!--bof- banner #6 display -->
<!--<?php
//  if (SHOW_BANNERS_GROUP_SET6 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET6)) {
//    if ($banner->RecordCount() > 0) {
?>-->
<!--<div id="bannerSix" class="banners"><?php echo zen_display_banner('static'$banner); ?></div>-->
<!--<?php
//    }
//  }
?>-->
<!--eof- banner #6 display -->
And replace it with the following code:

PHP Code:
<!--bof- banner #6 display -->
<?php
  
if (SHOW_BANNERS_GROUP_SET6 != '' && $banner zen_banner_exists('dynamic'SHOW_BANNERS_GROUP_SET6)) {
    if (
$banner->RecordCount() > 0) {
?>
<div id="bannerSix" class="banners"><?php echo zen_display_banner('static'$banner); ?></div>-->
<?php
    
}
  }
?>
<!--eof- banner #6 display -->