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