Do you have a link to your page.
The class="current" should do the trick.
If you have a menu like this on your homepage.
Code:
<ul class="glossymenu">
<li class="current"><a href="home.html"><b>Home</b></a></li>
<li><a href="css.html"><b>CSS</b></a></li>
<li><a href="forums.html"><b>Forums</b></a></li>
<li><a href="tools.html"><b>Webmaster Tools</b></a></li>
<li><a href="js.html"><b>JavaScript</b></a></li>
<li><a href="gallery.html"><b>Gallery</b></a></li>
</ul>
Then home will be active.
Now, if you click on say "CSS" (which is linked to css.html), then you should have the following on CSS.html to show that you're on the active page.
Code:
<ul class="glossymenu">
<li><a href="home.html"><b>Home</b></a></li>
<li class="current"><a href="css.html"><b>CSS</b></a></li>
<li><a href="forums.html"><b>Forums</b></a></li>
<li><a href="tools.html"><b>Webmaster Tools</b></a></li>
<li><a href="js.html"><b>JavaScript</b></a></li>
<li><a href="gallery.html"><b>Gallery</b></a></li>
</ul>
This has to be done manually. It won't automatically happen (unless you want to get into server side scripts).
Bookmarks