CodeClerks

How can you make visited links appear in bold?



Write the reason you're deleting this FAQ

How can you make visited links appear in bold?

Is it possible to add a code to the CSS stylesheet to make the visited links appear in bold or italics? Please show an example of how this is done.

Comments

Please login or sign up to leave a comment

Join
karoshio
For Bold:


a:visited {
font-weight: bold;
}
 



For Italics:


a:visited {
font-style: italtic;
}
 


Regards,
Karoshio



Are you sure you want to delete this post?

Sysode
Just to advance on what the above said, there are elements available for other situations as well. Such as

a {color:#FF0000;} - Global style for a link in general
a:visited {color:#00FF00;} - Once the link has been visited
a:hover {color:#FF00FF;} - When you're hovering over the link
a:active {color:#0000FF;} - The active link



Are you sure you want to delete this post?