
Originally Posted by
bekinky
I have seen how to do this somewhere but cannot find it again.
Probably here.

Originally Posted by
bekinky
I want to have 4 evenly spaced banners in my footer similar to how it has been done at monkeyshine.com, but I cannot find information on how to do it.
For www.monkeyshine.co.uk, all I did was re-arrange four of the built-in Zen Cart banners from their normal locations to the tpl_main_page template as follows
PHP Code:
<!-- bof footer banner cluster -->
<?php
if (!isset($flag_disable_banner_block) || !$flag_disable_banner_block) {
if (SHOW_BANNERS_GROUP_SET4 != '' || SHOW_BANNERS_GROUP_SET5 != '' || SHOW_BANNERS_GROUP_SET6 != '' || SHOW_BANNERS_GROUP_SET9 != '') {
echo '<div id="footerBanners">' . "\n";
if (SHOW_BANNERS_GROUP_SET4 != '' && ($banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4)) && $banner->RecordCount() > 0) {
echo '<div id="bannerFour" class="banners">' . zen_display_banner('static', $banner) . '</div>' . "\n";
}
if (SHOW_BANNERS_GROUP_SET5 != '' && ($banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET5)) && $banner->RecordCount() > 0) {
echo '<div id="bannerFive" class="banners">' . zen_display_banner('static', $banner) . '</div>' . "\n";
}
if (SHOW_BANNERS_GROUP_SET6 != '' && ($banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET6)) && $banner->RecordCount() > 0) {
echo '<div id="bannerSix" class="banners">' . zen_display_banner('static', $banner) . '</div>' . "\n";
}
if (SHOW_BANNERS_GROUP_SET9 != '' && ($banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET9)) && $banner->RecordCount() > 0) {
echo '<div id="bannerNine" class="banners">' . zen_display_banner('static', $banner) . '</div>' . "\n";
}
echo '</div>' . "\n";
}
}
?>
<!-- eof footer banner cluster -->
and then apply some very simple CSS to the resulting HTML
/* Banners */
#footerBanners {clear:both}
#bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix, #bannerNine {float:left; margin:10px 0 10px 10px}
The only wrinkle was dealing with the IE6 double margin float bug, for which I created the following stylesheet
/* IE6 Double Margin Float Bug fix */
#bannerOne, #bannerFour {margin:10px 0 10px 5px}
and applied it using my IE stylesheets mod available from the downloads section.

Originally Posted by
bekinky
I have also PM'd Kuroi but he has not got back yet
Despite my best efforts to be available 24/7, I tend to find that earning a living sometimes gets in the way!
Also worth mentioning while we're on the topic that, like many of the active members of the forum, it's rare that I answer questions in PMs. I donate time answering questions for the benefit of all its members current and future. Whereas questions answered in private benefit only the person who asked them.