View Single Post
12-14-2006, 04:01 AM
#3
Garrett is offline Garrett
Status: Waving
Join date: Aug 2005
Location:
Expertise:
Software:
 
Posts: 2,694
iTrader: 11 / 100%
 

Garrett is on a distinguished road

Send a message via MSN to Garrett

  Old

Originally Posted by jono1
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 {
	backgroudn: url(images/homerollover.gif);
}
Jono1, in your code the a#home:hover, has background spelt wrong.