Today I was creating a new HMENU with Typoscript and I have found a problem. I had this HMENU already configured:
temp.links = HMENU
temp.links.special = list
temp.links.special.value = 1,2,3,4,5
temp.links {
1 = TMENU
1 {
wrap = <ul>|</ul>
NO.linkWrap = <li>|</li>
}
}
Then I saw that I wanted to add a class in the last li tag. The solution is:
temp.links = HMENU
temp.links.special = list
temp.links.special.value = 1,2,3,4,5
temp.links {
1 = TMENU
1 {
wrap = <ul>|</ul>
NO.linkWrap = <li>|</li>|*||*|<li class="specialClasss">|</li>
}
}
Best regards!