Partially answeredmy own post, I bothered to do the work.
To add a new banner to home screen.
Tools >Banner manager > create new banner > name it "homead4" not sure which path to give it as I don't know where the path leads to, eg [I]index.php?main_page=index&cPath=3/I].
Where is Path3, or my Path4, etc?"
Then add code to main page:
HTML Code:
</div>
<div class="view view-tenth hm-right">
<div class="hover">
<?php
if (SHOW_BANNERS_GROUP_SETHOMEAD4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SETHOMEAD4))
{
if ($banner->RecordCount() > 0)
{
echo zen_display_banner('static', $banner) . '</div><div class="mask"><h2>' . $banner->fields['banners_title'] . '</h2><a href="' . zen_href_link(FILENAME_REDIRECT, 'action=banner&goto=' . $banner->fields['banners_id']) . '" class="info">' . SHOP_NOW . '</a>';
}
}?>
</div>
All the above actually doesn't work, but I'm on the right track.
Bookmarks