From 41caaab056854a61811af026c7e4c6a084e30df1 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Fri, 11 Oct 2013 05:05:05 -0700 Subject: [PATCH] Updated Troubleshooting (markdown) --- Troubleshooting.md | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/Troubleshooting.md b/Troubleshooting.md index 8e6e3d7..e565b08 100644 --- a/Troubleshooting.md +++ b/Troubleshooting.md @@ -1,8 +1,25 @@ You should use [stackoverflow](http://stackoverflow.com/) for support. -#### Checklist +#### Some icons doesn't show up 1. You don't have an old version of Font Awesome installed on your system (since it has priority); 2. Both your `font-awesome.css` file and your `/font` folder are up to date (if you are serving Font Awesome from your own server); 3. Your css link is up to date (if you are serving Font Awesome from a CDN) [See https://github.com/FortAwesome/Font-Awesome/issues/1490]; 4. You are not using plugins that load an older/modified version of Font Awesome [See https://github.com/FortAwesome/Font-Awesome/issues/1546]; -5. You are using valid [HTML5](http://www.w3.org/TR/html5/introduction.html#a-quick-introduction-to-html) templates. \ No newline at end of file +5. You are using valid [HTML5](http://www.w3.org/TR/html5/introduction.html#a-quick-introduction-to-html) templates. + +#### Reveal.js +If you are using FontAwesome < 4.0.0, add the following style: + +```css +.reveal [class^="icon-"], +.reveal [class*=" icon-"] { + font-family: 'FontAwesome'; +} +``` + +If you are using FontAwesome >= 4.0.0, add the following style: +```css +.reveal .fa-icon { + font-family: 'FontAwesome'; +} +```