You have to use CSS.
Just create your style with css and call the class "a.current".
Then, in your link (depending where are you located), add the "a.current" class.
Example:
CSS
a.current { color: #ffde0f; }
HTML
<a href="#">Your normal link</a> <a href="#" class="current">Your location at the moment</a>
Thanks Godflea,
I am trying to get it to work but not so far. In my external CSS file I have:
/****************************************************************/
#outerWrapper #topNavigation ul{
padding:1em 0;
margin: 0px auto;
list-style-type: none;
background-color: #222;
color: #FFF;
width: 100%;
font: normal 130% arial, helvetica, sans-serif;
text-align: center;
}
li {
display: inline;
margin:0 .2em;
text-decoration: none;
}
li a
{
padding: 3px 10px;
background-color: #999;
color: #222;
text-decoration: none;
}
a:link
{
color:red;
background-color:#999;
text-decoration: none;
}
a:focus
{
color:#fff;
}
a.current {
color:aqua;
}
/*li a:hover
{
color:red;
background-color:#999;
text-decoration:none;
}*/
li a:active
{
text-decoration: none;
background-color: #999;
color: #fff;
}
/* ==================================================================*/
Is the a.current in the right place?
Thanks
Geoff