Hi I have:
a.dismiss-cross {
background: transparent url(/images/cross-grey.png) no-repeat scroll 0 0;
float: right;
border: none;
width: 19px;
height: 19px;
display: block;
}
a.dismiss-cross:hover {
background-position: 0 -19px;
}
And implemented with
<a class='dismiss-cross' href='#'></a>
Lo and behold it doesn't work in IE whereas its fine in every other browser.
Any ideas?
Thanks.