The following smarty code produces a nice category menu when put inside a simple html module.
{categories_parent}
{foreach from=$pcat item=entry}
<img src="templates/{$smarty.const.MAIN_TEMPLATE}/images/bullet.png" width="5" height="5" hspace="3" vspace="3">{$entry.link}<br />
{/foreach}
Are there similar snippets to produce Navigation menus (Buy, Search, Browse, Contact etc) and User menus (Modify Account, Modify Ad', Logout etc)?
You can see what I'm trying to achieve at
http://www.mkclassifieds.co.uk/index.php but I really do need to standardise those menus.
Thanks