Joomla 1.5 center banner modules
A common problem with Joomla 1.5 is centering banners placed in the left or on the right side.
We create a new banner from COMPONENTS -> BANNER , the banner is displayed but never centered.
The solution to this problem is editing the file modules/mod_banners/tmpl/default.php : we need to tell Joomla to center each element.
You must edit this portion of the file
foreach($list as $item) :
?><div class=”banneritem<?php echo $params->get( ‘moduleclass_sfx’ ) ?>”><?php
echo modBannersHelper::renderBanner($params, $item);
?><div class=”clr”></div>
</div>
<?php endforeach; ?>
and we must add the <center> … </center> directive, thus having:
foreach($list as $item) :
?><center><div class=”banneritem<?php echo $params->get( ‘moduleclass_sfx’ ) ?>”><?php
echo modBannersHelper::renderBanner($params, $item);
?><div class=”clr”></div>
</div></center>
<?php endforeach; ?>
Save the file and exit, it should work fine
Tags: Joomla, joomla 1.5, joomla problems
August 17th, 2009 at 4:00 pm
Hello, thanks for the code it works great, but is it possible to make the advertise text centered too ? (the text that is above the banner)
September 18th, 2009 at 7:14 pm
I guess you can use the same CENTER tag 3 lines before
Hope it helps!
April 1st, 2010 at 9:39 pm
THANK YOU VERY MUCH !!