|
-
Feb 19th, 2002, 07:44 AM
#1
Thread Starter
Addicted Member
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.
-
Feb 19th, 2002, 09:11 AM
#2
well how are you calling them in your lnks? becasue that's what it should do from what you have.
-
Feb 19th, 2002, 11:02 AM
#3
Thread Starter
Addicted Member
I use the link as follows:
<A class="Prog" href="...">-----</A>
-
Feb 19th, 2002, 07:20 PM
#4
Stuck in the 80s
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}
-
Feb 19th, 2002, 07:22 PM
#5
Stuck in the 80s
This is actually all you need:
Code:
A.Prog:hover { TEXT-DECORATION: underline; color:#cce4f7}
A.Prog {TEXT-DECORATION: none;color: #cce4f7}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|