How to Center Joomla Banners

Posted by Systems Cowboy on February 17, 2011

It should be easy to center your Joomla banners, but it’s not as easy as you’d think. Here’s how to do it:

1) Navigate to modules/mod_banners/tmpl/default.php

2) Find the place in the code where it says:

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; ?>

3) Change it to:

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; ?>

That’s it!

Add Your Comment