4
only by modifying your theme.html
Taken from the default theme, the following code draws the center blocks:
le="color: #000000"><?php <!-- Display center blocks if any --> <{if $xoops_showcblock == 1}> <table cellspacing="0"> <tr> <td id="centerCcolumn" colspan="2"> <!-- Start center-center blocks loop --> <{foreach item=block from=$xoops_ccblocks}> <{include file="default/theme_blockcenter_c.html"}> <{/foreach}> <!-- End center-center blocks loop --> </td> </tr> <tr> <td id="centerLcolumn"> <!-- Start center-left blocks loop --> <{foreach item=block from=$xoops_clblocks}> <{include file="default/theme_blockcenter_l.html"}> <{/foreach}> <!-- End center-left blocks loop --> </td><td id="centerRcolumn"> <!-- Start center-right blocks loop --> <{foreach item=block from=$xoops_crblocks}> <{include file="default/theme_blockcenter_r.html"}> <{/foreach}> <!-- End center-right blocks loop --> </td> </tr> </table> <{/if}> <!-- End display center blocks -->
To place your center blocks below the module's content you would have to move that block of code below the code to display the module's content:
le="color: #000000"><?php <div id="content"> <{$xoops_contents}> </div>
In its current state there is no way to have blocks both above and below the module's content.