There was some sort of weird invisible character at the end of the
"color" rule ; that was what was messing up the rendered code. I
removed it but the hover still is not working! I just started using
coda (moving away from BBedit) and I find that something is causing
these strange characters to be inserted into my code occasionally. I
don't know why. Either way, the hover still doesn't work. I tried it 2
ways:
#nav li a:hover {
color: #FF000;
}
and
#nav a:hover {
color: #FF000;
}
I am sure it is something really silly, but I cannot find the problem.
And if anyone knows the reason why I have the other problem with my
thumbnail_grid div's position, please let me know! That's on this
page:
http://rorybernstein.com/francesca_proto/section_landing.html
The div called "thumbnail_grid" should be next to the "nav" div, both
of them under the logo. But the thumbnail_grid is getting pushed down
and sitting under the nav. Here is that rule:
#thumbnail_grid {
position: relative;
float: left;
overflow: hidden;
/* border: 1px solid red; */
width: 100%;
}
Thanks,
Rory
==========
On Mar 17, 2010, at 11:43 PM, Rod Castello wrote:
--- On Thu, 3/18/10, Rory Bernstein <[email protected]> wrote:
From: Rory Bernstein <[email protected]>
Subject: [css-d] 2 small css problems
To: "CSS Discuss List" <[email protected]>
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 [[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/
______________________________________________________________________
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/