Anysome font problem

Premium BuddyPress WordPress theme perfect for venue, music brand or community music website.
GK User
Mon Mar 17, 2014 10:29 pm
hi i have problem the font Anysome dont show in my site
tecnopixel 2014-03-17 alle 22.24.23.png

Solution ?
tnx
User avatar
Fresh Boarder

GK User
Tue Mar 18, 2014 8:52 am
Could you provide an URL to your website? (here or via PM)
User avatar
Moderator

GK User
Wed Mar 19, 2014 10:17 pm
Re: Anysome font problem
SENT: WED MAR 19, 2014 8:18 AM FROM: COXXI TO: PIOTR KUNICKI
Tnx for help
hi past my solution for php on IIS server
A typical @font-face declaration includes a .eot file, a .svg file, a .ttf file and a .woff file. If your IIS does not serve any of the previous file types, you need to set the appropriate mime type.

Simply add the following MIME type declarations via IIS Manager (HTTP Headers tab of website properties):

.eot application/vnd.ms-fontobject
.ttf application/octet-stream
.svg image/svg+xml
.woff application/x-woff
If you do not have access to the IIS Manager, you can add these declarations in your Web.config file, in the <system.webServer> section.

<system.webServer>
<staticContent>
<mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" />
<mimeMap fileExtension=".ttf" mimeType="application/octet-stream" />
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<mimeMap fileExtension=".woff" mimeType="application/x-woff" />
</staticContent>
</system.webServer>
Update: These settings will help you if the Font Awesome fonts are not showing in IE 9 or 10.
User avatar
Fresh Boarder


cron