7
Not all themes use external HTML files for their blocks. The external files are in fact completely unnecessary, & I'm guessing your theme is one without em.
Simply, where you see <{$block.title}> is where your block title is going to display, & <{$block.content}> is where your content is going to display. Those are the only necessary tags to display a block, edit the rest as much as you like.
So basically you can do this...
le="color: #000000"><?php <!-- Start center-center blocks loop --> <{foreach item=block from=$xoops_ccblocks}> <table cellspacing="1" cellpadding="5"> <tr> <td class="blockTitle"> <{$block.title}></td> </tr> <tr> <td class="blockContent"><{$block.content}></td> </tr> </table> <{/foreach}> <!-- End center-center blocks loop -->
Or this...
le="color: #000000"><?php <{foreach item=block from=$xoops_ccblocks}> <div class="blockTitle"><{$block.title}></div> <div class="blockContent"><{$block.content}></div> <{/foreach}>
Or even this...
le="color: #000000"><?php <{foreach item=block from=$xoops_ccblocks}> <{$block.title}> <br /> <{$block.content}> <{/foreach}>
Hope this helps.