View Single Post
12-14-2006, 03:15 AM
#2
jono1 is offline jono1
jono1's Avatar
Status: Non-conformist
Join date: Jul 2005
Location: Canberra, Australia.
Expertise:
Software:
 
Posts: 1,172
iTrader: 0 / 0%
 

jono1 is on a distinguished road

  Old

You've set the same background image for both states. You want something like
Code:
a#home {
	background: url(images/home.gif); // Or whatever the 'off' state image should be
	width: 55px;
}
a#home:hover {
	background: url(images/homerollover.gif);
}
EDIT: Corrected typo