I have web fonts disabled (because of abuse by many developers) and this looks like rubbish. Perhaps there is way to fall back to image icons if font is not available?
Font Awesome, the pictographic font designed for use with Twitter Bootstrap
71–80 of 96 posts
Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#72Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#73Note that this trick is as old as Windows 3.1, as Raymond Chen points out in his blog:
http://blogs.msdn.com/b/oldnewthing/archive/2012/01/16/10256...
(The blog name "Old New Thing" is spot-on as always :) )
Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#74Yes, very awesome. Makes implementation much easier. But having just removed a font from our web app to improve performance (download time and rendering time) I can't help but wonder if sprites aren't lighter weight than using a whole font when you only need a few icons.
Jammit http://documentcloud.github.com/jammit/ (and presumably other asset packagers) does it automatically.
Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#75I have web fonts disabled (because of abuse by many developers) and this looks like rubbish. Perhaps there is way to fall back to image icons if font is not available?
Good question. What should happen when people also have images disabled (because of abuse by many developers)?
But maybe you are right and the image fall-back is not such a great idea. I don't really know how characters are mapped to other font if one is not available but perhaps it would be possible to map them to something better in "standard fonts"? Just guessing here.
Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#76Yes, very awesome. Makes implementation much easier. But having just removed a font from our web app to improve performance (download time and rendering time) I can't help but wonder if sprites aren't lighter weight than using a whole font when you only need a few icons.
If you only need a low number of icons in a single size, then yes, bitmap icons are probably the way forward, but if you need lots of icons and you need them to be scaleable, then this is a great way to achieve it. I wish someone would create a tool that lets you pick only the icons you want and compile a new minimal font with just what you need in it (in all the formats necessary for safe cross browser embedding).
Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#77I love font icons and these are great. Thanks for sharing. Two notes: 1) When I first started using font icons, I encountered an issue that might be worth sharing - you need to make sure your web server properly handles the more esoteric file types that are included in the @font-face declaration. 2) Paperclip icon!!!! I'm sad when these icon sets are missing this very useful metaphor for "attachment": not "my dog jus…
1) Good catch. I'll look into what's going on there. 2) I like the idea for a paperclip icon. I'll look into adding that into the next version. Watch the repo or follow @FontAweso_me on Twitter to stay apprised of updates.
Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#78Yes, very awesome. Makes implementation much easier. But having just removed a font from our web app to improve performance (download time and rendering time) I can't help but wonder if sprites aren't lighter weight than using a whole font when you only need a few icons.
✔ it's also good practice to check unicode first. Arrows for example are available in all shapes and directions. ➜ So if there is an icon available in unicode just use that one.
Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#79Earlier quoted context omitted.
Is a comment in the stylesheet where the font is defined OK? That's what I usually do when the license requires attribution.
I feel like that would follow the intent behind a BSD license, but not that of a CC-BY. Actually, what's the advantage of using a commercial, attribution license over a BSD?
Re: Font Awesome, the pictographic font designed for use with Twitter Bootstrap
#80Yes, very awesome. Makes implementation much easier. But having just removed a font from our web app to improve performance (download time and rendering time) I can't help but wonder if sprites aren't lighter weight than using a whole font when you only need a few icons.
✔ it's also good practice to check unicode first. Arrows for example are available in all shapes and directions. ➜ So if there is an icon available in unicode just use that one.