PDA

View Full Version : Help with roll-over links



Holmesc
September 2nd, 2007, 10:42 PM
Hi, I'm working on my very first CSS/HTML website, and I'm having trouble with the navigation. I've been working in part with this (http://www.subcide.com/tutorials/csslayout/index.aspx) tutorial (which I highly recommend, by the way). Anyhow, I'd like to have a navigation system where only the background color of the button/link changes when you roll/hover over it, rather than what said tutorial prescribes. All help is appreciated, many thanks!

MTsoul
September 3rd, 2007, 02:29 AM
#main-nav dt a:hover {
background-color: #FF0000;
}

Holmesc
September 4th, 2007, 01:16 AM
Wow... I should've tried to figure that out. Oh well, thanks for the answer.