4
To remove block headers, see if your theme.html (or linked block.html) has a CSS class for the header, e.g.
<{foreach item=block from=$xoops_lblocks}>
<div class="blockTitle"><{$block.title}>div>
<div class="blockContent"><{$block.content}>div>
<{/foreach}>
Then set the CSS to remove the header, e.g.
.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.