Quick question...
If you have multiple links on the same page, which in essesnce reload the page, except for the fact that you have attached info to the url through the use of '?' does the browser reconize that they are different links?
My problem is, through CSS I change the color of visited links, and if one link is clicked then all links change to the visited color.
The CSS code I'm using is:
a:link { color: #000000; text-decoration: none; }
a:visited { color: #666666; text-decoration: none; }
a:hover { color: #666633; text-decoration: underline; cursor: pointer; }
a:active { color: #666633; text-decoration: none; }
Thanks for any help,
Itshim
If you have multiple links on the same page, which in essesnce reload the page, except for the fact that you have attached info to the url through the use of '?' does the browser reconize that they are different links?
My problem is, through CSS I change the color of visited links, and if one link is clicked then all links change to the visited color.
The CSS code I'm using is:
a:link { color: #000000; text-decoration: none; }
a:visited { color: #666666; text-decoration: none; }
a:hover { color: #666633; text-decoration: underline; cursor: pointer; }
a:active { color: #666633; text-decoration: none; }
Thanks for any help,
Itshim