Forum Moderators: open
[edited by: caine at 3:36 pm (utc) on Oct. 2, 2003]
[edit reason] no url's allowed. please see sticky. [/edit]
a:link,
a:visited {
font:72% verdana, arial, sans-serif;
color:#900;
}
a:hover {
text-decoration:none;
}
...and...
a.other:link,
a.other:visited {
font:80% times, serif;
color:#690;
}
a.other:hover {
text-decoration:none;
}
now in your HTML anywhere you have
<a href="foo.html">text</a>
you will get a link that is 72% of the default size in dark red verdana and the underline will disappear on hover.
BUT if you put
<a href="foo.html" class="other">text</a>
you will get a link in the times font in a horrible green color, and the the underline will again disappear when you move the mouse over.
just change the styles to suit.
ben