Stuart King wrote:
> I am trying to get my hover and current state a darker color and underlined.
> Unfortunately, this is not  working. The menu items stay the same. Please
> advise.
> http://www.skingdesign.com/cb_site/pages/partners.html

Hi Stuart--

On Line 94 of your cb_main.css style sheet, you have this rule:
#strap li a:hover,
#strap li a:active,
#strap li a:focus #strap li a:current {
        color: #38231A;
        text-decoration: underline;
}

I've placed line breaks after your selectors so the problem is a little
clearer. To begin with, there's no pseudo-class called :current (that
I'm aware of). The real problem is (1) a missing comma and (2) that I
think you meant to use id syntax and not pseudo-class syntax.

Replacing that rule with this one should do the trick for you:

#strap li a:hover,
#strap li a:active,
#strap li a:focus,
#strap li a#current {
        color: #38231A;
        text-decoration: underline;
}

HIH!
--beghilos(7718)



-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
TheHolierGrail.com | MacNimble.com | Cyber-Sandbox.com | Anytowne.com
Bill Brown, Web Developer - "From dot concept to dot com since 1999"
"The intuitive mind is a sacred gift and the rational mind is a
faithful servant. We have created a society that honors the servant and
has forgotten the gift. -- Albert Einstein
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to