<li>
  <span>overlay</span>
  content
</li>
li {
   position: relative;
   height:65px;
   overflow: hidden;
}
li span {
    background: url(../img/bullet_grey.png) no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50px;
    left: 10px;
}
This works in all browsers except IE6, which just hides the SPAN somewhere. How do I fix it?
Thanks!