I set the setting to Wide-Banners ...
I go to Banner Manager and set all status to OFF or RED icon ...
Banners that were displaying vanish ...
Make sure that you only have the 1 Banner Group in the:
Banner Display Groups - Header Position 1
Check the code in:
/includes/templates/template_default/common/tpl_main_page.php
Make sure it is current and up to date and that you do not have an override that is missing the settings for:
PHP Code:
<?php
if (SHOW_BANNERS_GROUP_SET1 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET1)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerOne" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<?php
}
}
?>