John,

First, take the background image off of the #backToTop div.  Then you'll see 
that the image isn't even there to change color.

The problem is that you haven't set dimensions on your A tag.  Once you do 
that, everything should work as you intend.

Like this:
a.backtotop {
  display: block; /* lets you set dimensions for the tag */
  height: 78px; /* height of image */
  width: 89px; /* width of image */
}

You don't need to set the link, visited, hover, or active states on this 
because these styles will be the same for all four states.

---Tim
______________________________________________________________________
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