Hello,
I have a CSS like so:
A:link { color: #3366CC }
A:hover { color: #FFCC99 }
A:active { color: black }
A:visited { color: #6699FF }
I then have several lines of html like:
<a class=main href="#" onClick="MM_openBrWindow('http://www.fncinc.com/','','')">FNC, Inc</a><br>
All these links are displayed as visited, I am assuming because of the href="#". While this is annoying (anyway around this in the CSS?) what is even more annoying is the A:hover doesn't work on any of my links. So all my links are the same color (#6699FF) and have no hover property.
I am sure ya'll have run into this before, could ya help out a noob?
Thanks-Luke
EDIT
Got some more info... If I leave out the A:hover line the ugly default browser colours take over only the truely links (those clicked on) and the remainder of the href"#" links respond accordingly to my style sheet. Please help.
I have a CSS like so:
A:link { color: #3366CC }
A:hover { color: #FFCC99 }
A:active { color: black }
A:visited { color: #6699FF }
I then have several lines of html like:
<a class=main href="#" onClick="MM_openBrWindow('http://www.fncinc.com/','','')">FNC, Inc</a><br>
All these links are displayed as visited, I am assuming because of the href="#". While this is annoying (anyway around this in the CSS?) what is even more annoying is the A:hover doesn't work on any of my links. So all my links are the same color (#6699FF) and have no hover property.
I am sure ya'll have run into this before, could ya help out a noob?

Thanks-Luke
EDIT
Got some more info... If I leave out the A:hover line the ugly default browser colours take over only the truely links (those clicked on) and the remainder of the href"#" links respond accordingly to my style sheet. Please help.
Comment