The problem I have is my menu, ive intgrated it into cmsms and it adds a new page in the menu when i create a new page which is fine.
The problem is that when I create a child page it doesnt show it in a drop down menu as it would do normally, it would just appear as another button under the parent button.
Im using the simple_navigation.tpl, don't know why, but its the only one that works.
Near the end bit of the tpl file I have this:
Code: Select all
{else}
<li><a href="{$node->url}"><span>{$node->menutext}</span></a>
Code: Select all
<ul class="dropdown">
<li><a href="#about/1">about this item</a></li>
</ul>
Code: Select all
{else}
<li><a href="{$node->url}"><span>{$node->menutext}</span></a><ul class="dropdown">
<li><a href="{$node->url}">{$node->menutext}</a></li>
</ul>
If anyone could help me I would highly appreciate it! I absolutey love cmsms but this is just letting me down.

I'm assuming this has something to do with the code in the simple_navigation.tpl file as my html and css work fine.