15
Putting a block in a block? Seems like a hard way to do it to me...
go to admin>system>blocks> and click on 'edit' for the 'Main Menu' block (system_block_mainmenu.html) and you should find the code (edit template) looks something like this:
le="color: #000000"><?php <table cellspacing="0"> <tr> <td id="mainmenu"> <a class="menuTop" href="<{$xoops_url}>/">Home - ホーム</a> <!-- start module menu loop --> <{foreach item=module from=$block.modules}> <a class="menuMain" href="<{$xoops_url}>/modules/<{$module.directory}>/" title="<{$module.name}>"><{$module.name}></a> <{foreach item=sublink from=$module.sublinks}> <a class="menuSub" href="<{$sublink.url}>" title="<{$sublink.name}>"><{$sublink.name}></a> <{/foreach}> <{/foreach}> <!-- end module menu loop --> </td> </tr> </table>
Add your link (regular html will do fine) after the
le="color: #000000"><?php end module menu loop -->
part.