3
maybe your theme dont have code for left and right block..
try this for left block
le="color: #000000"><?php <{if $block.title != ""}><div class="blockTitle"><{$block.title}></div><{/if}> <div class="blockContent"><{$block.content}></div>
and this for right block
le="color: #000000"><?php <{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
le="color: #000000"><?php <!-- Display left blocks start--> <{if $xoops_showlblock == 1}> <td id="leftcolumn"><!-- Start left blocks loop --> <{foreach item=block from=$xoops_lblocks}> <{include file="leftblock.html"}> <{/foreach}><{/if}> <!-- End left blocks loop -->
and here for calling the right block
le="color: #000000"><?php <!-- Display right blocks start--> <{if $xoops_showrblock == 1}> <td id="rightcolumn"><!-- Start right blocks loop --> <{foreach item=block from=$xoops_rblocks}> <{include file="pinoy3/blocks/theme_blockright.html"}> <{/foreach}> <!-- End right blocks loop --><{/if}>
well hope it help