What I can't understand is: do you want more subcategories or do you want more menu?
In your previous post you were asking to add subcategories.
i want to make more extract - expand menues ..........
in the quick navigation
at this time an example there are 6
to extract - expand menues
how can i make it more
What I suggested you it is meant to add a new category there. The file you have to edit is
nav_quick_links.tpl and you have only to change the ID of the block, assigning it a new name.
<tr>
<th style="cursor:pointer;cursor:hand;" align="left" onclick="ShowHide('demo_menu','demo_menu2','demo_menu');">
<img src="{IMG_NAV_MENU_PALETTE}" alt="{L_SELECT_STYLE}" title="{L_SELECT_STYLE}" />
<a href="javascript:void(0);" title="{L_SELECT_STYLE}" style="vertical-align: top;"><b>{L_SELECT_STYLE}</b></a>
</th>
</tr>
<tr>
<td class="row5">
<div id="demo_menu2" style="display: none; position: relative; padding-top: 0px; padding-bottom: 0px;">
<table class="forumline-no2" width="100%" cellspacing="0" cellpadding="2" border="0">
<tr>
<td class="genmed" align="center">{STYLE_SELECT_H}</td>
</tr>
</table>
</div>
<div id="demo_menu" style="display: ''; position: relative;">
<script language="javascript" type="text/javascript">
<!--
tmp = 'demo_menu';
if(GetCookie(tmp) == '2')
{
ShowHide('demo_menu','demo_menu2','demo_menu');
}
//-->
</script>
</div>
</td>
</tr>
Try adding this and let me know.