12
le="color: #000000"><?php <td id="centercolumn"> <!-- 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}> <div class="blockTitle"><{$block.title}></div> <div class="blockContent"><{$block.content}></div> <{/foreach}> <!-- End center-center blocks loop --> </td> </tr> <tr> <td id="centerLcolumn"> <!-- Start center-left blocks loop --> <{foreach item=block from=$xoops_clblocks}> <div class="blockTitle"><{$block.title}></div> <div class="blockContent"><{$block.content}></div> </div> <{/foreach}> <!-- End center-left blocks loop --> </td><td id="centerRcolumn"> <!-- Start center-right blocks loop --> <{foreach item=block from=$xoops_crblocks}> <div class="blockTitle"><{$block.title}></div> <div class="blockContent"><{$block.content}></div> <div class="blockContent"><{$block.content}></div> </div> <{/foreach}> <!-- End center-right blocks loop --> </td> </tr> </table> <{/if}> <!-- End display center blocks --> <div id="content"> <{$xoops_contents}> </div> </td>
This is the important stuff for the center column.
You should move the
le="color: #000000"><?php <div id="content"> <{$xoops_contents}> </div>
in between the
</tr>
<tr>
below/above the code blocks, you want to position the main content over. Keep the <tr> section containing the "centerLcolumn" and "centerRcolumn" together, though, as you will otherwise break the layout, but you can place the sections with "centerCcolumn" and "content" wherever you want.