I have used this tutorial http://www.purity2.fr/en/tutoriels/mise-en-page/modules/116-ajouter-2-positions-en-dessous-position-top to both add the top two positions which it was designed to do and to add a center bottom position under my main front page text in the center. It worked very well but I cannot figure out how to add some space between the bottom grey line under main content and the new position.
The new position center-bot has my recent forum posts module in it.
The site is http://www.flyingeaglesrc.com
To add the new position I added the following into main.php
<?php if( $this->countModules('content_bot') ): ?>
<div id="content_bot">
<jdoc:include type="modules" name="content_bot" style="JArounded" />
</div>
<?php endif; ?>
This into template.css
#bottom_cen {
/*float: left; */
width: 98%;
}
and added the positon name under templateDetails.xml
So I would like to be abe to add a little space above my recent forum posts module.
Thank you.