Forum Moderators: mack
Not sure if it's what your after but if it's a smallish site you have then you could always use a css 'class' to manually hilight the links. Something line this:
Add this class to your .css file changing the colour or style as needed:
.youarehere {
font-weight: bold;
background-color: #foo;
}
Then add the 'class' to the relevant menu item on the current page like this:
<li class="youarehere"><a href="index.htm">Home</a></li>
or
<td class="youarehere"><a href="index.htm">Home</a></td>
depending on if your using css or tables for layout.
Hope it helps.