2
<{if $xoops_showcblock == 1}>
<{foreach item=block from=$xoops_clblocks}>
<{include file="shadowman/theme_blockcenter_l.html"}>
<{/foreach}>
<{foreach item=block from=$xoops_crblocks}>
<{include file="shadowman/theme_blockcenter_r.html"}>
<{/foreach}>
<{foreach item=block from=$xoops_ccblocks}>
<{include file="shadowman/theme_blockcenter_c.html"}>
<{/foreach}>
<{/if}>
That should do it, assuming you are formatting these after the fact ;)
Or assuming you aren't, you could try...
<{if $xoops_showcblock == 1}>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<{foreach item=block from=$xoops_clblocks}>
<{include file="shadowman/theme_blockcenter_l.html"}>
<{/foreach}>
td>
<td>
<{foreach item=block from=$xoops_crblocks}>
<{include file="shadowman/theme_blockcenter_r.html"}>
<{/foreach}>
td>
tr>
table>
<{foreach item=block from=$xoops_ccblocks}>
<{include file="shadowman/theme_blockcenter_c.html"}>
<{/foreach}>
<{/if}>
Hope this helps :)