Hi,
I want to achieve a fairly simple thing. To make the first and last menu tiems have a class. Something like this:
<ul class="menu>
<li class="first"></li>
<li></li>
<li class="last"></li>
</ul>
Now, it would be even better if I could also give each menu item a class name based on it's number. And i do not mean the page id.
Like this:
<ul class="menu>
<li class="item-1 first"></li>
<li class="item-2"></li>
<li class="item-3 last"></li>
</ul>
I've searched all over and I couldn't find anything that would make this possible. I hope someone can help me on this.