Hi unborn,
try this example
- works in IE5.5,
- works not in IE4 and NN4
- I can't test NN6 here
As you can see, the color 'orange' (in :link and :visited has no effect anymore) but the font-weigth has !!
Don't put the onmouseover/-out in the <a> tag because then you get a blue underline and the font-color don't change. (It's the same effect as Link 1 with a lot more code)
You can change <font></font> to <span></span> if you want.
<HTML>
<HEAD>
<TITLE></TITLE>
<style>
.normal { COLOR:#C3C0EF; }
a.navi:link {text-decoration: none; font-weight: bold; color

range}
a.navi:visited {text-decoration: none; font-weight: bold; color: orange}
a.navi:hover {color:red; text-decoration:underline;}
</style>
</HEAD>
<BODY>
<a class="navi" href="date.asp"><font class="normal">link 1 to datepage</font></a>
<br>
<a class="navi" href="date.asp"><font class="normal" onmouseover="changeColors(this);" onmouseout="changeBack(this);">link 2 to datepage</font></a>
<script language="javascript">
function changeColors(that)
{
that.style.color = 'blue'
}
function changeBack(that)
{
that.style.color = ''
}
</script>
</BODY>
</HTML>
Hope this helps,
Erik <!-- My sport:
Boomerang throwing !!
This year I will participate at the World Championships in Germany. (
!! Many Happy Returns !! -->