Hi,
The Site You looked at is still Joomla 1.x ;-) ...
I'm talking about Joomla 1.5 + Magazine to which i will switch ... hopefully soon ..
The problem will be solved in the next release of Magazine.
In the meanwhile if You need it You have to change magazine.html.php to
###### SHOW BANNERS IF SET ##################
if($edition[0]->show_banners_h){
ob_start();
$banner = null;
$query = "SELECT *"
. "\n FROM #__banner"
. "\n WHERE showBanner=1 and imageurl<>''"
. "\n ORDER BY RAND() LIMIT 1"
;
$database->setQuery( $query );
$banners = $database->loadObjectList();
$banner = $banners[0];
ob_end_clean();
if($banner->custombannercode != null) {
$banner = $banner->custombannercode;
}
else
{ $banner ="<a href='".JURI::base()."index.php?option=com_banners&task=click&bid=".$banner->bid."' target='_blank'><img src='".JURI::base()."images/banners/".$banner->imageurl."' border='0' alt='Advertisement' /></a>";}
echo "<tr class='$css_content_title'>
<td valign='top' align='center'>".$banner."</td>
</tr>
";
if($imagcfg[1]!="")
echo "<tr><td valign='bottom' style=\"background-image: url(".JApplication::getBasePath()."/images/".$imagcfg[1].");\" width=\"100%\" height=\"3\"></td></tr>";
else
echo "<tr><td valign='bottom'><hr class='article_separator'></hr></td></tr>";
}
#### END SHOW BANNERS #####################
regards





?