This is my first EE attempt so I may be barking up the wrong tree. It’s very simple, and consists of 5 page templates, each representing a different page. I’ve included the menu bar at the top of each page and would like to have it display an active button (different colour to other buttons), when that button’s page is the current page. So I need to get class=“current_page” to change position, depending on the the current page.
How do I do that? Currently my navigation template looks like this :
<div id="my_nav_bar">
<ul id="tabs">
<li class="current_page"><a href="#" rel="nofollow" title="Home">Home</a></li>
<li class=""><a href="#">About</a></li>
<li class=""><a href="#" title="Services">Services</a></li>
<li class=""><a href="#" title="FAQ">FAQ</a></li>
<li class=""><a href="http://{path=site/blog}" title="Blog">Blog</a></li>
</ul>
</div> <!-- my_nav_bar -->Liz