Removed font face stuff because people need to update the whole .css file

Geremia Taglialatela 2013-12-10 06:01:16 -08:00
parent 5759b0a014
commit 34a26d4975

@ -152,28 +152,3 @@
* `youtube-sign` -> `youtube-square` * `youtube-sign` -> `youtube-square`
* `zoom-in` -> `search-plus` * `zoom-in` -> `search-plus`
* `zoom-out` -> `search-minus` * `zoom-out` -> `search-minus`
### New default font path
Don't forget to update the css file and the font path
v3.2.1
```css
@font-face {
...
src: url('../font/fontawesome-webfont.eot?v=3.2.1');
src: url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');
...
}
```
v4.0.3
```css
@font-face {
...
src: url('../fonts/fontawesome-webfont.eot?v=4.0.3');
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
...
}
```
If you are using the default font path, need to rename the folder to `fonts`.