I’m doing something stupid … but, I just can’t see it. I’m trying to move my text offscreen to accommodate screen readers — and use the background image for presentation
<div class="memberstatus-clubmember">
Clubmember
</div>
.memberstatus-clubmember {
background: transparent url(/memberStatus/clubmember.png) no-repeat 0 0;
display:block;
width:193px; /* width of image */
height:15px; /* height of image */
text-indent:-999999px;
}
Try adding
position: absolute;This should help: