4
I think I found the problem... .itemTitle a {} is defined, but .itemTitle a:hover {} is not. IE6 will inherit the global a:hover definition, but Firefox and IE7 will not.
If you want the itemTitle to hover orange in all browsers, just add the following under the .itemTitle a {} definition in style.css
.itemTitle a:hover {
color: #f90;
background: inherit;
text-decoration: none;
}
HTH.
James
Insanity can be defined as "doing the same thing over and over and expecting different results."
Stupidity is not a crime. Therefore, you are free to go.