
Background position always reverts to top left
I have a few elements on the page which have a transparent png sprite as their background image. It seems that css pie is ignoring the background position for the sprite and it always reverts to top left.
Here's the CSS:
Code:
bannav a {
font-family:'Gill Sans W01 Book';
display: block;
float: left;
border-radius: 10px 10px 0 0;
padding: 10px;
color: #fff;
text-decoration: none;
width:218px;
background: url('../img/devlin-sprite.png') no-repeat 209px -185px;
margin-right: 2px;
behavior: url(/PIE.htc);
}
Any ideas?