View Single Post
  #2 (permalink)  
Old Apr 10th, 2007, 17:20
karinne's Avatar
karinne karinne is offline
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Rollover behaviour applying to whole div-HELP

Apply the :hover to a instead since :hover won't work in IE anyways.

So ... something like this

Code: Select all
#navigation a:hover {
    font-weight: bolder;
    color: #FF0000;
}
Reply With Quote