The links in the left menu in this website have a CSS3 transition property of the color, which changes on mouse hover. It\'s not working in Chrome 16 or 17 (the
color
I still ran into the same issue and found a solution that worked for me.
I was able to fix it by using the :link pseudo class like this:
:link
#menu a, #menu a:link { color: gray; transition: color 0.5s; } #menu a:hover { color: black; }