> From: Click This IT Solutions
> Sent: Saturday, June 03, 2006 2:01 PM

> The site is at www.989studiowebhosting.com and the CSS file is
> www.989studiowebhosting.com/989style.css

Rudi,

> Hi clever css people

You're not really talking to me ;->

> I have a problem on my first CSS layout/design. The one thing 
> I'm struggling
> with is to get the a:hover to work. It was working just fine 
> and all of a
> sudden it stopped working after some minor adjustments to who 
> knows what or

Your rule states:
a:hover {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #CCCCCC;
        background-color: #CCCCCC;
        visibility: visible;

}

Notice how color and background are the same. That basically makes your link
disappear. Change color to something else and they will reappear.

a:hover {
color: #ff0000;
}

--G

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to