css - How can I remove a font dowloaded with @font-face from the browser cache? -
some time ago asked question , none of answers solved problem. clients complaining i'm gonna try once again:
i published new release of webapp using @font-face limited version of "droid sans" (no latin characters). font files hosted on server. week later changed font full version because of customers use spanish language. new customers new full font no problem, customers accessed first time limited font published don't special characters more.
i guess old font cached somewhere in browser, haven't been able remove it.
i've tried change font name , css definition browser download again... nothing working. knows how fix this?
this css definition:
@font-face { font-family: 'droid'; src: url(/files/droidsans.eot); src: url(/files/droidsans.eot?iefix) format('eot'), url(/files/droidsans.woff) format('woff'), url(/files/droidsans.ttf) format('truetype'), url(/files/droidsans.svg#webfontw7zqo19g) format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'droidbold'; src: url(/files/droidsansbold.eot); src: url(/files/droidsansbold.eot?iefix) format('eot'), url(/files/droidsansbold.woff) format('woff'), url(/files/droidsansbold.ttf) format('truetype'), url(/files/droidsansbold.svg#webfontsohom6as) format('svg'); font-weight: normal; font-style: normal; } body, a, p, div, span, li, td, th, caption { font-family: droid, optima, calibri, helvetica, sans-serif; font-size: 10pt; line-height: 14pt; }
you said "tried change font name , css definition". try change font name , resave font file names,
@font-face { font-family: 'droidboldnew'; src: url(/files/droidsansboldnew.eot); src: url(/files/droidsansboldnew.eot?iefix) format('eot'), url(/files/droidsansboldnew.woff) format('woff'), url(/files/droidsansboldnew.ttf) format('truetype'), url(/files/droidsansboldnew.svg#webfontsohom6as) format('svg'); font-weight: normal; font-style: normal; }
see if works.
Comments
Post a Comment