Jump to content

hover over text issue.


Orionsbelter

Recommended Posts

.silvertext{
font-family:Verdana, Geneva, sans-serif;
color:#999;
font-size:10px;
font-weight:bold;
text-transform: capitalize;
}
.silvertext a:hover{
font-family:Verdana, Geneva, sans-serif;
color:white;
font-size:10px;
font-weight:bold;
text-transform: capitalize;
}
.silvertext a:visited{
font-family:Verdana, Geneva, sans-serif;
color:#999;
font-size:10px;
font-weight:bold;
text-transform: capitalize;
}

 

The issue is that when i hover over it should turn white however it doesn't it stays #666 if i take away the a:visited it does turn white when i hover over the text but has the default of purple which i do not want.

 

Help me please.

Link to comment
Share on other sites

Change your CSS to this:

 

.silvertext{
font-family:Verdana, Geneva, sans-serif;
color:#999;
font-size:10px;
font-weight:bold;
text-transform: capitalize;
}
.silvertext a:visited{
font-family:Verdana, Geneva, sans-serif;
color:#999;
font-size:10px;
font-weight:bold;
text-transform: capitalize;
}
.silvertext a:hover{
font-family:Verdana, Geneva, sans-serif;
color:white;
font-size:10px;
font-weight:bold;
text-transform: capitalize;
}

 

The pseudo-selectors  have to be in this order - :link, :visited , :hover, :active

An easy way to remember this is:

Link

o

Visited

e

Hover

Active

t

e

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.