6
Ok, here is what works for my theme:
Almost forgot, this change is made in xoops/themes/yourtheme/theme.html
show left blocks
le="color: #000000"><?php <table cellspacing="0" width="100%"> <tr> <{if $xoops_showlblock == 1}> <td id="leftcolumn" width="100%"> <!-- Start left blocks loop --> <{foreach item=block from=$xoops_lblocks}> <{include file="craig/theme_blockleft.html"}><br /> <{/foreach}> <!-- End left blocks loop --> </td> <td width="8"> </td> <{/if}>
no left blocks
le="color: #000000"><?php <table cellspacing="0" width="100%"> <tr> <{if $xoops_dirname == 'newbb'}> <td></td> <{else}> <{if $xoops_showlblock == 1}> <td id="leftcolumn" width="100%"> <!-- Start left blocks loop --> <{foreach item=block from=$xoops_lblocks}> <{include file="craig/theme_blockleft.html"}><br /> <{/foreach}> <!-- End left blocks loop --> </td> <td width="8"> </td> <{/if}> <{/if}>
I have been meaning to do this myself.