Beverly
Level X3
Write the reason you're deleting this FAQ
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.
Are you sure you want to delete this post?
karoshio
a:visited {
font-weight: bold;
}
For Italics:
a:visited {
font-style: italtic;
}
Regards,
Karoshio For Bold: [CODE] a:visited { font-weight: bold; } [/CODE] For Italics: [CODE] a:visited { font-style: italtic; } [/CODE] Regards, Karoshio
Are you sure you want to delete this post?