Hi
Did it appear in the center box?
I'm fairly new to this and someone far more qualified will be along shortly with a bit of luck. However, this is what I have done so far (a work in progress - please please back up your files!) to move the banner I created, from the the center position on in the main center box, to the top right next to / opposite my logo.
Maybe you can play with it and figure out the rest from here I don't know, but like I say, I'm pretty new to this lark so please please back up all files.
Here is is... I removed this from file tpl_index_default.php
<?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
}
}
?>
and added it to file tpl_header.php inbetween
<!--bof-branding display-->
and
<!--eof-branding display-->
Like this...
<!--bof-branding display-->
<div id="logoWrapper">
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
<?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
}
}
?>
</div>
</div>
<div class="clearBoth"></div>
<!--eof-branding display-->
Hope this is helpful and my sincere apologies if it is flawed advice.
Cheers
Matt


Reply With Quote
