Description:I have tried so many solutions by changing the font paths and I have verified that my fonts are always loading perfectly fine but still my icons sometimes shown broken.
for example I have used class "glyphicon-log-in" which was sometimes displayed as "î…¡"
Posted by: Peter Andre | Posted on: Feb 04, 2019
3
It seems to be that you have minified your css? if so then I have also faced same problem few months back and main cause of the problem is that some minification tools minify css's hexadecimal values as well. for example in your case check out your css your "glyphicon-log-in" hexadecimal value "\e161" must be converted to "î…¡". which might be read by some browsers/sometimes correctly but some will unable to do so.
So for a solution you need to replace these values to the actual hexadecimal value explicitly.
Find and replace the following chunk in your minified file.
Replied by: Umer khan | Replied on: Feb 06, 2019