Broken design in Internet Explorer 11
AskBot has broken design on IE 11.
here how askbot.org/en/questions/ looks like:
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&subset=latin-ext' rel='stylesheet' type='text/css'>
and
<link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&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'>
Comments
We'll wait till the IE11 is officially released, it's still beta.
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?