I styled a menu using CSS and added some javascript animation to the menu for sub menus, i have replaced the <ul> section under the div id of navigation with {menu} and now the drop downs do not work.
Any ideas?
Many thanks

Code: Select all
{if $count > 0}
<ul class="sub-menu">
{foreach from=$nodelist item=node}
{if $node->depth > $node->prevdepth}
{repeat string="<ul>" times=$node->depth-$node->prevdepth}
{elseif $node->depth < $node->prevdepth}
{repeat string="</li></ul>" times=$node->prevdepth-$node->depth}
</li>
{elseif $node->index > 0}</li>
{/if}
Your browser only sees HTML, CSS, and JS... CMSMS doesn't put anything into it that you don't allow. Debug this issue, and that will be the start of it working, and might possibly fix it altogether.eddyndm wrote:Ive just seen that to, i think its part of CMSMS though....