I've recently added some simple css to change the background color when you mouse over an item in the product list. Very simple I thought, and it looks fine in firefox, but in I.E. it has an annoying flash when you mouseover different parts of it.
I'm thinking this is because of where I.E. is rendering tags, when I mouse over them.
If you want to see an example mouseover a featured product on the home page here
and here's the code i've added to main.css
Code:
div.item:hover {
background-color: #F0F0F0;
}