I am stuck with this problem so any help would be appreciated. I have a table with several rows. Each cell within the row belongs to a certain class. I use these class names to
You probably need to use the !important designator to make sure that your hover style overrides the background defined int he class:
tr:hover { background-color: #FFFFAF0 !important; color: #000 !important; }
Interestingly, this won't work for IE6 because that browser only applies hover to a tags.