css - Webfont not working in Internet Explorer -


i'm using webfont hosted fonts.com. renders in chrome, firefox, safari, not in version of internet explorer. ie10 not rendering it.

the project runs plone. css file registered via cssregestry. shouldn't make difference normal site.

to familiar plone, registry:

<stylesheet     bundle="aufhebenswert"     id="http://fast.fonts.com/cssapi/47bc7d51-3bb8-428d-a077-06d3d6f54eae.css"     insert-after="*"     cacheable="false"     compression="none"     cookable="false"     enabled="true"     media="screen"     rel="stylesheet"     rendering="link"/> 

to others, appears in html site:

<link rel="stylesheet" type="text/css" media="screen" href="http://fast.fonts.com/cssapi/47bc7d51-3bb8-428d-a077-06d3d6f54eae.css"> 

in ie link rendered in chrome or ff , ...

sadly couldn't find solution in other questions have been asked here before. google search haven't been successful.

is there known issue or did wrong?

officially fonts.com fonts should work in ie 4 , upper versions.

i suspect missing local source fonts in applied stylesheet:

src: local(fontfamilyname) local(fontname)

which might related ++resource++-paths used in plone.

the stylesheet seems protected authentification-mechanism, because applying stylesheet directly given url test-template works fine, whereas applying local copy of it, not.

does font-provider let actual font-files or custom stylesheet? if yes, apply local copies of font-files , stylesheet, replace font-url plone-product-url , supplement style-rules local sources.


Comments