The entypo-fontello icon fonts were not displaying in Chrome. I was just seeing boxes, rather than the icons. I noticed other Enfold users have experienced similar issues.
I did some research and found that is has to do with webfont access. Adding the following to my .htaccess file solved the problem:
<IfModule mod_headers.c>
<FilesMatch “\.(ttf|ttc|otf|eot|woff|font.css|css)$”>
Header set Access-Control-Allow-Origin: http://yourwebsitedomaingoeshere.com
</FilesMatch>
</IfModule>