First, is this banner created in Admin>Tools>Banner Manager?
Second, in Admin>Configuration>Layout Settings>Banner Display Groups - Header Position 1, have you entered the same name there as your banner is named in the Banner Manager?
If all the above is all correct, then you will need to edit [FONT=monospace]includes/templates/black_pure_free/common/tpl_main_page.php to move this block of code
[/FONT]
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
}
}
?>
up the page to sit right under this line:
Code:
<body id="<?php echo $body_id . 'Body'; ?>" class="smartBG<?php echo smart_backgrounds();?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
Hope this helps.[FONT=verdana][/FONT]