PDA

View Full Version : Making a colored background for a link



rugget
November 3rd, 2005, 03:52 PM
I was wondering how to make a simple text link have a rollover effect that changes the background behind the text. e.g. this menu http://css.maxdesign.com.au/

bwh2
November 3rd, 2005, 04:55 PM
a:hover {
background-color: #FF0000;
}
well, that makes it red, but you get the idea.

rugget
November 3rd, 2005, 05:17 PM
thank you