--- On Thu, 3/18/10, Rory Bernstein <r...@rorybernstein.com> wrote:

From: Rory Bernstein <r...@rorybernstein.com>
Subject: [css-d] 2 small css problems
To: "CSS Discuss List" <css-d@lists.css-discuss.org>
Date: Thursday, March 18, 2010, 3:33 AM

I have 2 small CSS problems and I just can't seem to figure them out:

http://rorybernstein.com/francesca_proto/

On this page, I cannot get the "hover" to work on the nav bar links.
The style sheet is here:
http://rorybernstein.com/francesca_proto/style.css

The rule that I think should be making the text links turn red when
you hover is:
#nav li a:hover {
color: #FF000;


Thanks,
Rory


Hi Rory,
It seems as though you are missing the semi-colon, and the closing bracket.
/* HOVER NOT WORKING!!! */
#nav li a:hover {
color: #FF0000

The above is what shows up in your CSS file. 

It should read:
/* HOVER NOT WORKING!!! */
#nav li a:hover {
color: #FF0000; */semi-colon added/*
} */closing bracket added/*

Maybe that will help

Rod Castello

______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
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/
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
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