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:
<{if $xoops_showcblock == 1}>
<table cellspacing="0">
<tr>
<td id="centerCcolumn" colspan="2">
<{foreach item=block from=$xoops_ccblocks}>
<{include file="default/theme_blockcenter_c.html"}>
<{/foreach}>
td>
tr>
<tr>
<td id="centerLcolumn">
<{foreach item=block from=$xoops_clblocks}>
<{include file="default/theme_blockcenter_l.html"}>
<{/foreach}>
td><td id="centerRcolumn">
<{foreach item=block from=$xoops_crblocks}>
<{include file="default/theme_blockcenter_r.html"}>
<{/foreach}>
td>
tr>
table>
<{/if}>
This whole section of code creates the center blocks on a given page. If you look a little further down you'll see:
<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 "".