Hi there, I've got some <h2> headings that I want to be text rollovers. Is there a way of doing this? My <h2> heading is linked to part of my stylesheet: Would I be able to add the rollover code directly to this? And what code could I use? Thanks for any help. Matt
It won't work in IE 5/6 without a .htc file (since IE doesn't understand what I'm about to show you on anything but links, and wrapping your heading around an anchor will invalidate your HTML), but I'd use :hover for the effect. Like so: #content h2:hover { background: #063287; color: #489315; } Code (markup): (the colors were chosen at random)