Hi All,
These are two different issues so I’ll address each as such:
@jacopolupi the issue is simply some custom CSS being inserted into your page which is forcing all elements to use a specific font. On line 160 of your linked page there is the following being output by another plugin, I think something along of the lines Easy Google Font Styles?
<style id="tt-easy-google-font-styles" type="text/css">p { }
h1 { }
h2 { }
h3 { }
h4 { }
h5 { }
h6 { }
* { font-family: 'Roboto Slab'!important; font-style: normal!important; font-weight: 100!important; }
</style>
FooBox’s icons are supplied as a font, this bit of CSS is forcing every element in the page to use the Roboto Slab font due it it applying the font using the * selector and the !important keyword. I would suggest removing this plugin or contacting it’s author about how to alter his plugins output.
@rickmnz as it is working live but not on dev I believe the issue might be related to either the server not being configured to serve font files, I see this quite regularly. Or the issue may have been that the url’s on dev were pointing to the live assets and were denied due to a CORS error. As dev is no longer available I can’t say for certain but hopefully this can help you out if the issue reoccurs.
@hasifrett I see yours is also working now on your site, from what you described I think the issue was similar to @rickmnz’s.
Thanks