You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 27, 2020. It is now read-only.
I was getting this strange problem in IE9 during browser testing.
HTML1115: X-UA-Compatible META tag ('IE=edge') ignored because document mode is already finalized.
When I moved the and to the top of the then this seemed to fix it.
I suggest changing the page-includes.xsl file to put the <title> and favicon AFTER the stk:head.create-metadata.
Also, I suggest changing the output to html instead of xhtml because this solves a lot of self-closing tag issues in both IE and Firefox.
When there is no content and the page output mode is xhtml then you get <tbody/> and this causes problems in IE. A similar thing also caused problems in Firefox.
I was getting this strange problem in IE9 during browser testing.
HTML1115: X-UA-Compatible META tag ('IE=edge') ignored because document mode is already finalized.
When I moved the and to the top of the then this seemed to fix it.
I suggest changing the page-includes.xsl file to put the <title> and favicon AFTER the stk:head.create-metadata.
Also, I suggest changing the output to html instead of xhtml because this solves a lot of self-closing tag issues in both IE and Firefox.
For example:
When there is no content and the page output mode is xhtml then you get
<tbody/>and this causes problems in IE. A similar thing also caused problems in Firefox.