Is it possible to set the opacity of a background image without affecting the opacity of child elements?
All links in the footer need a custom bull
If you are using the image as a bullet, you might consider the :before pseudo element.
#footer ul li { } #footer ul li:before { content: url(/images/arrow.png); filter:alpha(opacity=50); filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.5); opacity:.50; }