forked from FortAwesome/Font-Awesome
-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting
Geremia Taglialatela edited this page Oct 25, 2013
·
17 revisions
- You don't have an old version of Font Awesome installed on your system (it has priority);
- Both your
font-awesome.css
file and your/font
//fonts
folder are up to date (if you are serving Font Awesome from your own server); - Your css link is up to date (if you are serving Font Awesome from a CDN) (Refers to #1490);
- You are not using plugins that load an older/modified version of Font Awesome (Refers to 1546);
- You are using valid HTML5 templates.
Icons doesn't show up in tags with text-rendering: optimizeLegibility
. According to your Font Awesome version, please add to your stylesheets:
/* FA 3.2.1 and older */
[class^="icon-"],
[class*=" icon-"] {
text-rendering: auto;
}
/* FA 4.0.0 and newer */
.fa {
text-rendering: auto;
}
(more info on #862)
If you are using font-variant: small-caps;
, according to your Font Awesome version, please add to your stylesheets:
/* FA 3.2.1 and older */
[class^="icon-"],
[class*=" icon-"] {
font-variant: normal;
}
/* FA 4.0.0 and newer */
.fa {
font-variant: normal;
}
(more info on #2171)
According to your Font Awesome version, please add to your stylesheets:
/* FA 3.2.1 and older */
.reveal [class^="icon-"],
.reveal [class*=" icon-"] {
font-family: 'FontAwesome';
}
/* FA 4.0.0 and newer */
.reveal .fa {
font-family: 'FontAwesome';
}
(more info on #2131)