2
Yes, you can. Open your theme.html file (located in /themes/default/ if you are using the default theme) and look for this chunk of code (highlighted red):
le="color: #000000"><?php <table cellspacing="0"> <tr> <td id="centerCcolumn" colspan="2"> [color=FF0000] <!-- Start center-center blocks loop --> <{foreach item=block from=$xoops_ccblocks}> <{include file="default/theme_blockcenter_c.html"}> <{/foreach}> <!-- End center-center blocks loop --> [/color] </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>
Now since the default theme already shows the center columns above the center left and right columns, I assume you are using a different theme that has changed this part. Examine your theme.html file and move that chunk of code (or it's equivalent) to where you want it.