3
maybe your theme dont have code for left and right block..
try this for left block
<{if $block.title != ""}><div class="blockTitle"><{$block.title}>div><{/if}>
<div class="blockContent"><{$block.content}>div>
and this for right block
<{if $block.title != ""}><div class="blockTitle"><{$block.title}>div><{/if}>
<div class="blockContent"><{$block.content}>div>
if you want you can save it as leftblock.html and rightblock.html and call it in your theme.html by this code in your theme.html
for calling the left block
<{if $xoops_showlblock == 1}>
<td id="leftcolumn">
<{foreach item=block from=$xoops_lblocks}> <{include file="leftblock.html"}> <{/foreach}><{/if}>
and here for calling the right block
<{if $xoops_showrblock == 1}>
<td id="rightcolumn">
<{foreach item=block from=$xoops_rblocks}> <{include file="pinoy3/blocks/theme_blockright.html"}> <{/foreach}>
<{/if}>
well hope it help