Quote Originally Posted by NewBiee View Post
Yeah, but the problem is that I use this HTML page on all other page on my mini site. so I don't wanna edit the class all over and over again. Any suggestions sir?
Actually, you can do so with a little bit of javascript to check all links and match ones that equals to the current path. And then set a special id attribute to them and add id style in your css file
You can add the javascript code to an existing .js file that is already in all pages.

As for the css, isn't it already in his code:
PHP Code: 
<ul id="navigation">
                <
li class="active"><a href="/">Home</a></li>
                <
li><a href="/myaccount">My Account</a></li>
                <
li><a href="/editaccount">Edit Account</a></li>
                <
li><a href="/logout">Logout</a></li>
</
ul
He only needed to remove those extra active class from other list items