php - image is not showing smaller as icon on browser chrome and fire fox browsers
Solution:
What i see on the first look is that you missing the units in width property. Your code:
.header_top-left1 a img {
width: 20; // hast to be 20px for example
height: 15px;
display: block;
}
Answer
Solution:
It looks as though IE is ignoring the Fontawesome classes and just showing the png green backed phone image while the other browsers are attempting at least to use fa.
Your given code doesn’t show any setting up of the font. Is this done somewhere?
Source