3
Hello,
You must testing the block's name in your theme
Example for :
http://www.xoops-modules.com (block at left)
<div class="leftcolumn">
<!-- Start left blocks loop -->
<{foreach item=block from=$xoops_lblocks}>
<{if $block.title =="User menu"}>
<!-- theme for User Menu -->
<{include file="xoopsmods/theme_blockleft_user.html"}>
<{else}>
<!-- theme for the others -->
<{include file="xoopsmods/theme_blockleft.html"}>
<{/if}>
<{/foreach}>
<!-- End left blocks loop -->
</div>