I have an external link, and even though i have followed other threads on how to get target="_blank" working, it still isn't
here is the menu template:
Code: Select all
{if $count > 0}
<ul id="top-nav" class="horizontalStrippedList top-nav">
{foreach from=$nodelist item=node}
{if $node->depth > $node->prevdepth}
{repeat string="<ul class=\"horizontalStrippedList bottom-nav\">" 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}
<li><a href="{$node->url}"{if $node->target != ''} target="{$node->target}"{/if}>{$node->menutext}</a>
{/foreach}
{repeat string="</li></ul>" times=$node->depth-1}</li>
</ul>
{/if}
Code: Select all
{menu loadprops="1" items="events,offers,ourstory,directions,employment,contact"}
Any help would be appreciated... Thanks in advance,
Crud