2
the way actually leads through your chosen theme. Depending on your theme the actual lines may be different, but the concept is the same.
I will use the default theme as an example. If you look in /themes/default/theme.html you'll find code that looks like this:
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 -->
This whole section of code creates the center blocks on a given page. If you look a little further down you'll see:
le="color: #000000"><?php <div id="content"> <{$xoops_contents}> </div>
This code displays the current page contents. So if you wanted the page content to display above your blocks, move the second block of code before the "<!-- Display center blocks if any -->".