Untermenü anzeigen
Posted: Thu Mar 12, 2009 2:57 pm
Hallo!
Also ich habe ein Menü mit folgendem Template:
Ich habe bei einem meiner Menüpunkte mehrere Unterpunkte - wie kann ich diesen in diesem Menü anzeigen?
Vielen Dank für eine Antwort!
lg
davidb
Also ich habe ein Menü mit folgendem Template:
Code: Select all
<table bordercolor="#000000" cellspacing="2px" cellpadding="1px" width="190px" height="200px" align="center" class="menu_tabelle">
{foreach from=$nodelist item=node}
{if $node->current == true}
<tr>
<td bgcolor="#EEEEEE" onMouseOver="style.backgroundColor='#AAAAAA'" onMouseOut="style.backgroundColor=''">
<a href="{$node->url}" style="font-size: 12px; color: #444444; text-decoration: none; font-weight: bold; font-family: Tahoma;"> {$node->menutext}</a>
</td>
</tr></font>
{else}
<tr>
<td bgcolor="#EEEEEE" onMouseOver="style.backgroundColor='#AAAAAA'" onMouseOut="style.backgroundColor=''">
<a href="{$node->url}" style="font-size: 12px; color: #444444; text-decoration: none;font-weight: bold; font-family: Tahoma;"> {$node->menutext}</a>
</td>
</tr></font>
{/if}
{/foreach}
</table>
Vielen Dank für eine Antwort!
lg
davidb