To unhighlight the forum tab on a page find this
Code:
<vb:if condition="!$vboptions['selectednavtab'] AND THIS_SCRIPT != 'search'">
I wanted to make the Who's Online page a tab so this is what I changed it to:
Code:
<vb:if condition="!$vboptions['selectednavtab'] AND THIS_SCRIPT != 'search' AND THIS_SCRIPT != 'online'">
I added AND THIS_SCRIPT != 'online'
'online' can be anything before a php thing in the URL
So if you want it to not highlight on all forums you'd put 'forumdisplay'
I'm not sure how to do it with pages like a specific forum, so maybe someone else could say how.