This was really nice as my menu manager could set different css classes to the menu items, and thereby having different images for the different items. Like this:
Code: Select all
{if $node->type == 'content'}
<li class="pageitem"><a href="{$node->url}"> {$node->menutext} </a>
{elseif $node->type == 'link'}
<li class="links"><a href="{$node->url}"> {$node->menutext} </a>
{else}
<li class="news"><a href="{$node->url}"> {$node->menutext} </a>
Any hints, tips or solutions much appreciated.