I have a submenu that has all items linked to the same node, but with different additional parameters, for ex:
...
<li...><a href = "/?q=page1&filter=10" class = "... active">Item1</a></li>
<li...><a href = "/?q=page1&filter=11" class = "... active">Item2</a></li>
...
in this case all items have class ‘active’ and none of them has class ‘active-trail’.
Is there any way to identify the true active link (for styling purposes)?
any suggestions will be much appreciated!
You could also style the active link using Javascript, though admittedly it is rather verbose. Here is the code and you would just change the styles to be how you want.