I've been practicing CSS and look what I have done:
CODE
<style type = "text/css">
<!--
a.button
{
color: #000000;
background-color: #D4D0C8;
text-decoration: none;
border-style: outset;
border-width: 2px;
border-color: #0000FF;
padding-left: 5;
padding-right: 5
}
a.button:visited
{
border-color: #000000
}
a.button:hover
{
color: #FF0000;
border-color: #FF0000
}
a.button:active
{
color: #800000;
border-color: #800000;
background-color: #E9E7E3;
border-style: inset
}
-->
</style>
It basically displays links as if they were buttons
Look at the attachment for an example (blue buttons are notvisited links, while grey buttons are the visited ones)
NOTE: I've only tested the webpage on Firefox, I guess that it'll work on other browsers as well, but I dunno
;