Oh goodness, I've certainly been at this for too long...
Thank you very much!
On Sun, Jan 11, 2009 at 4:20 PM, JR Heard wrote:
> Hi Matt,
>
> On Sun, Jan 11, 2009 at 1:14 PM, Matt Fielding wrote:
> > .content a:hover {
> >color: #EODCDC;
> > }
>
> Validating your markup via http://jigsaw.w
On Sunday 2009-01-11 16:14 -0500, Matt Fielding wrote:
> .content a:hover {
> color: #EODCDC;
> }
The character after the capital "E" is an uppercase letter "O"
rather than a number "0". That's causing the declaration to be
discarded, since it is syntactically incorrect.
See
http://jigsaw.w3
Matt Fielding wrote:
>
> However, even with this code I am having an issue where the text is not
> changing when the mouse hovers over the text. The active effect is working
> perfectly fine, as is the normal a,a:link,a:visited effect. The HTML I have
> for this section is as follows:
>
>
Try:
Hi Matt,
On Sun, Jan 11, 2009 at 1:14 PM, Matt Fielding wrote:
> .content a:hover {
>color: #EODCDC;
> }
Validating your markup via http://jigsaw.w3.org/css-validator/ shows
that the color you've used for your a:hover is invalid - looks like
you're using an O instead of a 0, and there aren't
Hello everyone,
I come to you with a very peculiar problem that I can't seem to find the
solution to. I know that the order of appearance of pseudo-classes for doing
hover effects must be :link, :visited, :hover, :active. That is the order I
have them appearing, as you see in the code below:
.con