Im using flexslide to show some images, now I want to show the next/prev image as a thumbnail while hovering over the next and prev arrows. But if I use an image as thubnail the mouse over effect stop working, but if i use a CSS border, the hover works just fine.
I have created a fiddle where the prev arrow hovers an image(that dosent work) and the next arrow hover a simple border( works ) JSFIDDLE
#carousel .flex-direction-nav li a.flex-prev {
background: url('http://cmbstaging.dreamhosters.com/assets/images/arrow-left.png') no-repeat;
display: block;
width: 18px;
height: 39px;
left: -36px;
}
I tried to change the display:block, to display:inline-block. But that didn't do the work. Any tips ?