Wordpress Special Character in Menus/Buttons

Soldato
Joined
30 Apr 2007
Posts
3,095
Location
Kent
Hi All,

I have just taken on the hosting of a website for a friend, which is based on Wordpress.

The menus/some buttons have some special characters to put in arrows/phone symbols with CSS. But on the old host they are working fine, but on the new host (TSOHost) they are not? Any ideas? Same browser gives this result:

kc-example-new_zpsxtdfp9bj.jpg

New

kc-example-existing_zpspuufcue2.jpg

Old

Many thanks in advance.
 
Soldato
OP
Joined
30 Apr 2007
Posts
3,095
Location
Kent
Yeah it looks as if they're coming from a Font File. What MIME Type does it need to be serving...

This is the font definition in the CSS:

Code:
@font-face {
    font-family: 'FontAwesome';
    src: url('font/fontawesome-webfont.eot');
    src: url('font/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('font/fontawesome-webfont.woff') format('woff'), url('font/fontawesome-webfont.ttf') format('truetype'), url('font/fontawesome-webfont.svgz#FontAwesomeRegular') format('svg'), url('font/fontawesome-webfont.svg#FontAwesomeRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
 
Back
Top Bottom