-
Notifications
You must be signed in to change notification settings - Fork 12.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Icon loading error on Font awesome page (IE8 - winxp) #5115
Comments
can't confirm. IE11 windows 7 x64 sp1 please provide more information PS: control+click on home or whatever will load the same page in another tab |
Sorry, at the moment I don't have such a machine. It could be the random issue described here #954 |
-Thanks for your reply! This is somehow like my problem.. but in my app after hover the icon comes. There are lot of answers for hover problem.. but nothing works clear.. They are like scripting! |
if there were a perfect solution, we would definitely take it into account. 😔 I have a couple of suggestions:
<span class="fa"></span> Home Get html codes from here: http://fontawesome.io/cheatsheet/
|
IE8 stubbornly refuses to re-run layout and paint on pseudo-elements in many different cases. The only surefire way to force it to do its job is to explicitly alter the contents of the pseudo-element using a toggle on the Try toggling the E.g. use a CSS ruleset like: html.ie-force-pseudo-refresh :before,
html.ie-force-pseudo-refresh :after {
content : none !important;
} and use some JS to assign it to the
The problem occurs when IE has started painting the page using the fallback font, before the webfont with the icons has finished downloading. The odds can be played somewhat by reducing download size (and thus making the icons arrive faster), but you can never get rid of the problem with a 100% guarantee. For instance; if you have a page with HTML and CSS that comes from cache and a webfont that is either not cached or has expired cache, you will more or less always hit this problem, |
@rjgotten I think that the force pseudo refresh stuff + javascript is not a perfect solution... But it is a good workaround, if you could also share a javascript to refresh icons I would definitely add it to the troubleshooting guide
Does IE8 support base 64 embedded font? Is it a viable workaround? |
@prasathraj92 please give a try here: |
@tagliala Just an FYI, if you need a older IE to test on, I find the VMs from https://www.modern.ie/ work fairly well. |
locking here, please refer to #954 |
There is a bug (I.E) in font awesome page...
The bug is:
Go to Examples page ,
In " Fixed Width Icons " place - Ctrl+click Home (Anything),
Now the icons are not loaded properly,
Likewise, I have same issue on my page,
If any one can solve this issue, it will be very helpful for me.
Thank you!
The text was updated successfully, but these errors were encountered: