Page 1 of 1

Add an ID to the 5th Menu item?

Posted: Tue Jun 05, 2012 11:29 pm
by beherenow_uk
Hi,

I have read the smarty manual, and appear to be able to add an ID to every 5th item using iteration, but how can i target just the 5th menu item? I can't get anything to work in the menu manager...

This code is the iteration...

Code: Select all

<li class="{$classes}" {if $smarty.foreach.foo.index % 5 == 0} id="lasttalk" {/if}><a class="{$classes}" href="{$node->url}"><span>{$node->menutext}</span></a>
Any ideas? Thanks.

Re: Add an ID to the 5th Menu item?

Posted: Wed Jun 06, 2012 3:03 am
by calguy1000
{if $smarty.foreach.foo.index % 5 == 0}

try

{if $smarty.foreach.foo.index == 4} {* yes 4 *}