From: "Phoebe Taylor" <[EMAIL PROTECTED]>

>oh, okay.. I see now.  My other site had the css and html files all in
>one directory.  I didn't even think about the path there.
>
>Okay, so now i see the background, so half the battle won.  Now I just
>need to get it to slide over to see the right half on hover.

> http://www.cgraytaylor.net/sullivan/index3.html 

 a.events:hover active {
   background-position: 0 -166px;
 }

That selector selects an element called active, that is inside an anchor with 
the class name "events" the anchor is hovered. I suspect that since there isn't 
an element type "active" that your selector isn't going to select anything. Did 
you mean - 

 a.events:hover, a.events:active {
   background-position: 0 -166px;
 }

??? creating a selector for both the hover and active states?

~holly 
 
                   
______________________________________________________________________
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