Quote:
Originally Posted by Quantnet.org
|
Cool. Glad you got it working.
Quote:
Originally Posted by Quantnet.org
I have a customized header template that has navigation bar in a similar fashion as vb.org in that the bar will be highlighted depends on the location of the page you visit. If you at forum home, the FORUM button will be highlighted, if you at the VBA home, the HOME will be highlighted and so on. I'd like to have it so that the Wiki will be highlighted when i'm on any page of wiki.
|
Try the following. I am assuming that
tabpage is the class for the active tab. What it does is to highlight the Forums tab only if you are not in the wiki nor in the vbAdvanced Home.
PHP Code:
<a href="#" onclick="window.open('/forum/javachat.php?$session[sessionurl]do=lite','javachat','statusbar=no,menubar=no,toolbar=no,scrollbars=no,resizable=yes,directories=no,width=750,height=550,left=50,top=100,screenX=50,screenY=100'); return false;" class="tab">Chat</a>
<a href="http://www.quantnet.org/wiki/" class="<if condition="THIS_SCRIPT == 'vbwiki'">tabpage<else />tab</if>">Wiki</a>
<a href="http://www.quantnet.org/forum/" class="<if condition="(THIS_SCRIPT != 'vbwiki') && (THIS_SCRIPT != 'adv_index')">tabpage<else />tab</if>">Forum</a>
<a href="http://www.quantnet.org/" class="<if condition="THIS_SCRIPT == 'adv_index'">tabpage<else />tab</if>">Home</a>