My footer in Wordpress has a number of social icons, but Instagram is the only one that fails rendering properly (see attached image):
I have added the following for better font rendering:
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
And this is how the icon is defined in my style.css:
.icon-instagram:before {
content: "\e604";
}
What is the issue? I am very new to css icons, so I am not sure what the issue can be in this case.
Thank you,
EDIT1:
Font-family is defined as follows in my style.css:
[class^="icon-"], [class*=" icon-"] {
font-family: 'my-icons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}