Hi,
I tried your solution but it doesnt seem to work, this is what I have in the stle sheet:
normal.a { text-decoration: underline; font-weight: bold }
normal.a:link { color: blue }
normal.a:visited { color: purple }
normal.a:active { background: yellow }
normal.a:hover { background: yellow }
navi.a { text-decoration: underline; font-weight: bold }
navi:link.a { color: black }
navi:visited.a { color: black }
navi:active.a { background: yellow }
navi:hover.a { background: yellow }
and this is how I refer to it in the html script:
<a href="products.shtml"; class="navi">Products</a>
<a href="services.shtml"; class="normal">Services</a>
What am I doing wrong?
Thanks.