Hi,
Transitions don't seem to change the opacity of images so you would need to use solid colours instead.
e.g.
Code:
aside .ul2 li{
-webkit-transition: all 1s ease-in; /*safari and chrome */
-o-transition: all 1s ease-in; /* opera */
-moz-transition: all 1s ease-in; /*moz */
transition: all 1s ease-in;
}
aside .ul2 li:hover{ background:red ; color:#fff; }
If you set up classes for each of those boxes and change the colour to match the images you had previously then it should work ok in browsers that support transitions.
Bookmarks