html - Issue loading web fonts in I.E 11 - some browsers, not all browsers -


i've looked around , found many questions , answers address fonts not loading in i.e

what haven't found, question/answer fonts not loading in some instances of i.e

my @font-face's this:

@font-face {     font-family: 'open_sans_condensedbold';     src: url('/content/fonts/opensans-condbold-webfont.eot');     src: url('/content/fonts/opensans-condbold-webfont.eot?#iefix') format('embedded-opentype'),          url('/content/fonts/opensans-condbold-webfont.woff') format('woff'),          url('/content/fonts/opensans-condbold-webfont.ttf') format('truetype'),          url('/content/fonts/opensans-condbold-webfont.svg#open_sans_condensedbold') format('svg');     font-weight: normal;     font-style: normal; } 

there many of these.

at times, clients browsers not loading fonts.

my machine; they're fine. guy next me, don't load. clients call in same issues.

some things we've tried.

  • not running in compatibility mode
  • running in compatibility mode (breaks other things)
  • deleting temp files

they won't load client browsers.

any ideas?

ok. found issue.

because happening on versions of i.e seemed more setup of browser.

essentially, 'font download' disabled in internet options:

enter image description here


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -