views:

52

answers:

1

Using the groovy Fisheye function from the jQuery plugin Interface, and setting "halign" to "left" the effect seems to apply to the next image in the list rather than the one that the mouse is actually over.

link

A: 

Remove margin-left: -50px; from the style rules for a.dock-item2 in style.css.

a.dock-item2 {
    display: block; 
    font: bold 12px Arial, Helvetica, sans-serif;
    color: #000; 
    bottom: 0px; 
    position: absolute;
    text-align: left;
    text-decoration: none;
    margin-left: -50px; /* remove this line */
}
Adam