2
you can change that in theme.html
the original is something like this:
<tr>
<td class="centerblock" colspan="2" width="100%">
<{foreach item=block from=$xoops_ccblocks}>
<div class="blockTitle">
<{$block.title}>div>
<div class="blockContent">
<{$block.content}>div>
<{/foreach}>
td>
tr>
<tr>
<td width="50%">
<{foreach item=block from=$xoops_clblocks}>
<div class="blockTitle">
<{$block.title}>div>
<div class="blockContent">
<{$block.content}>div>
<{/foreach}>
td>
<td width="50%">
<{foreach item=block from=$xoops_crblocks}>
<div class="blockTitle">
<{$block.title}>div>
<div class="blockContent">
<{$block.content}>div>
<{/foreach}>
<p> p>
td>
tr>
change it with:
<tr>
<td width="50%">
<{foreach item=block from=$xoops_clblocks}>
<div class="blockTitle">
<{$block.title}>div>
<div class="blockContent">
<{$block.content}>div>
<{/foreach}>
td>
<td width="50%">
<{foreach item=block from=$xoops_crblocks}>
<div class="blockTitle">
<{$block.title}>div>
<div class="blockContent">
<{$block.content}>div>
<{/foreach}>
<p> p>
td>
tr>
<tr>
<td class="centerblock" colspan="2" width="100%">
<{foreach item=block from=$xoops_ccblocks}>
<div class="blockTitle">
<{$block.title}>div>
<div class="blockContent">
<{$block.content}>div>
<{/foreach}>
td>
tr>
in short:
open your theme.html with frontpage and put center-left and center-right blocks
above center-center block