Broken design in Internet Explorer 11
 

AskBot has broken design on IE 11.

  • here how askbot.org/en/questions/ looks like:

    image description

Same thing on my page. Maybe the reason is the multiple css data files.

Update:

The Problem is the font family, i.e.:

 font-family: 'Open Sans Condensed', Arial, sans-serif;

Open Sans Condensed is not recognized. So we see Arial instead, which is wider.

I also see two different Open Sans Condensed fonts calls in the askbot code:

<link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&amp;subset=latin-ext' rel='stylesheet' type='text/css'>

and

<link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&amp;subset=cyrillic-ext' rel='stylesheet' type='text/css'>

According to Google it can be combined to:

<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700&subset=latin,latin-ext,cyrillic' rel='stylesheet' type='text/css'>

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Toms's avatar
767
Toms
asked 11 years ago, updated 11 years ago

Comments

We'll wait till the IE11 is officially released, it's still beta.

Evgeny's avatar Evgeny (11 years ago)

IE 11 is released now. I see that on this forum it works now. On my site the problem still persists. What do I have to change in the CSS file to get it work properly?

Toms's avatar Toms (11 years ago)
see more comments