On my forum, I used the following code:
Code:
<style type="text/css">
li#home {
background:#FFFFFF:
padding:3px;
-moz-border-radius-topright:5px;
-moz-border-radius-topleft:5px;
}
li#home a {
color:#333333;
}
</style>
To make that work, you'll need to put that in the header of each page you want it to work in. For example, if you have "Calendar" in your nav bar, you'll need to put that style code in the header of your calendar template.
Just make sure you edit the navigation bar to something like this for it work:
Code:
<div class="menu">
<ul>
<li id="home">Home</li>
<li id="search">Search</li>
<li id="members">Members</li>
<li id="calendar">Calendar</li>
</ul>
</div>
So in the "Search" template header, you'd change the style code to
so the "Search" page would be active.
Please let me know if this does not make sense, and I'll try to make it more easier.
Thanks.