-
Style Sheet
Hello,
I have applied the followin styles:
A.Prog:hover { TEXT-DECORATION: underline; color:#cce4f7}
A.Prog:link {TEXT-DECORATION: none;color: #cce4f7}
A.Prog:Active {TEXT-DECORATION: none;color:#cce4f7}
A.Prog:visited {TEXT-DECORATION:none ;color:#cce4f7}
when the mouse pointer be over a link that was not visited before it will be underlined,
but those links which are visited before doesn't have underline when mouse pointer be over them.
I want the link (what ever it was visited or not) be without underline when the mouse out, and underlined when the mpouse over.
What changes I have to do for these styles.
-
well how are you calling them in your lnks? becasue that's what it should do from what you have.
-
I use the link as follows:
<A class="Prog" href="...">-----</A>
-
change to:
Code:
A.Prog:hover { TEXT-DECORATION: underline; color:#cce4f7}
A.Prog:link {TEXT-DECORATION: none;color: #cce4f7}
A.Prog:Active {TEXT-DECORATION: none;color:#cce4f7}
A.Prog:visited {color:#cce4f7}
-
This is actually all you need:
Code:
A.Prog:hover { TEXT-DECORATION: underline; color:#cce4f7}
A.Prog {TEXT-DECORATION: none;color: #cce4f7}