PDA

View Full Version : Beginner - navbar links question - pls help


abadired
06-30-2009, 05:22 AM
Hi All,

I'm going to have Home, Forums, Gallery and Chat links in my navbar
what codes should I add to show these links:

Forums, Gallery, Chat----while in Home
Home, Gallery, Chat---while in Forums
Home, Forums, Chat---while in Gallery
Home, Forums, Gallery---while in Chat

thanks a bunch

Lynne
06-30-2009, 03:11 PM
You will want to use a condition to only show some links on some pages. Something like:
<if condition="THIS_SCRIPT != 'index'">
show Home link
</if>
<if condition="THIS_SCRIPT != 'forumdisplay'">
show Forums link
</if>
etc.

abadired
06-30-2009, 06:11 PM
Thanks Lynne, I'll try and see if I can figure out mine