Forum Moderators: open
Add this to the head of your document (a better solution would involve storing this in a separate .css file and including it, but I'm going for simplicity here):
<style type="text/css">
a:link { color: #0000ff; }
a:visited { color: #00ff00; }
a:hover { color: #ff0000; }
a:active { color: #ff00ff; }
</style>
Note, links are only "active" when you are in the process of clicking them. That is, "active" does not mean "if this link is the current page, highlight it differently".
Hope this helps.