4
To remove block headers, see if your theme.html (or linked block.html) has a CSS class for the header, e.g.
le="color: #000000"><?php <!-- Start left blocks loop --> <{foreach item=block from=$xoops_lblocks}> <div class="blockTitle"><{$block.title}></div> <div class="blockContent"><{$block.content}></div> <{/foreach}> <!-- End left blocks loop -->
Then set the CSS to remove the header, e.g.
le="color: #000000"><?php .blockTitle { height: 0px; margin: 0; padding: 0; background: transparent }
You could also use 'display: none'. Or, just remove the block title entry from the theme.
A thread is for life. Not just for Christmas.