Hello
Does anyyone know how to change the colour of a hyper link?
I know if you use the following code, when you click the link, the page changes to the new page and if you go back the colour of the link had changed so you know you have already been there (visited that part)
<A href="/MyIntranet/Contents/MyPageToShow.asp">Page Shown</A>
I've put this style into my code which changes the colour and works fine, but when i click another link, the colour of the previous link changes back to its orignal colour
<head>
<style type="text/css">
<!--
a:link {color: #000000; text-decoration: blink; text-transform: lowercase; }
a:visited {color: #008000; text-decoration: underline; text-transform: lowercase; }
a:active {color: #FF0000; text-decoration: underline; text-transform: lowercase; }
a:hover {color: #000080; text-decoration: underline; text-transform: lowercase; }
/* CSS created in part with the aid of
a Script Writer from
http://CodeAve.com */
-->
</style>
</head>
Also, I have a refresh on the page, so when the page refreshes the colour of the clicked link goes back to its orginal colour
What i want to do is have a hyper link that opens a new page in a different browser session, and when clicked the hyper link colour changes, i can do the link to open the new page in another browser session and change the colour of the clicked hyper link, but what i can't figure out it to keep the changed colour after the page has refreshed, and when more than one link is clicked
Thanks for all your help
Gill