Ok, it works but only when I enter one subforum of that category id. When I directly view the category id it doesn't appear as 'current'.
Also, for the forums wich are on my forumhome.. it should be 'current' for the 'Home' part of the menu. I have used THIS_SCRIPT == 'index'.. but it work only when I'm browsing the homepage..
This is my actual code:
Code:
<div id="menucase">
<div id="styletwo">
<ul>
<li><a href="http://www.example.org/" <if condition="THIS_SCRIPT == 'index'">class="current"</if>>Home</a></li>
<li><a href="forumdisplay.php?f=72" <if condition="$foruminfo['parentid'] == 72">class="current"</if>>Test 1</a></li>
<li><a href="forumdisplay.php?f=36">Test 2</a></li>
<li><a href="forumdisplay.php?f=60">Test 3</a></li>
</ul>
</div>
</div>