Cannot view the source image file on a website
http://www.wordherd.co/#features On this site, when I try to look at the source image file of any of the icons (like "Directions") using Firebug, it displays some sort of unicode for the content. How do you get to the source image files? I'm trying to understand the hack they are using to prevent the images from being accessible. Josh Crozier These "images" are icons fonts. They are usually added via :before / :after pseudo elements. In this instance, the content value is an ASCII representation of an external font library character. .icon-flag:before { content: "\f024"; } In order for this to