I'm struggling to come up with an effective way to showcase my Icons.
My preference is to utilize CSS instead of an image tag.
Here's the code I'm using:
<span id="Span1" class="iconPrinter"></span>
.iconPrinter{background:url(../images/BWIcons.gif) no-repeat 0 0; padding:0 8px;}
or
.iconPrinter{background:url(../images/BWIcons.gif) no-repeat 0 0; width:16px;}
It functions well on FF, but on IE6, the Icons are not visible unless I add a span within the span.
Using a div or display:block; resolves the issue, however, it must remain inline.
Appreciate any assistance. Thank you!