Hi Danny,
So If I understand you correctly you found out after this thread you support page also showed numbers, so you also disabled the IE script now?
I'm asking you this specific because my English is not that good and I would like to have that confirmation you did the same like me to get Font Awesome work with IE8.
The above is question one...
I still have an other question about the IE compability script, because when I understand you correctly, you and I both have it disabled now.
When I do some testing in IE tester, the icons are there and for the rest I don't see any other problems...
But concerning the text below IE has problems with reconizing html5 like <header>, <footer>... therefore it's neccesarry to use the IE compability script.
How is it possible, with you and me both having this option disabled, that there are now NO problems in IE tester? Because Pagelines uses both <header> and <footer>, so this should be a problem when I do understand it correctly...
But the test looks like there is NO problem... please help me out with this issue.
12. Internet Explorer and HTML5
Unfortunately, that dang Internet Explorer requires a bit of wrangling in order to understand the new HTML5 elements.
All elements, by default, have a display of inline.
In order to ensure that the new HTML5 elements render correctly as block level elements, it’s necessary at this time to style them as such.
- header, footer, article, section, nav, menu, hgroup {
- display: block;
- }
Unfortunately, Internet Explorer will still ignore these stylings, because it has no clue what, as an example, the header element even is. Luckily, there is an easy fix:
- document.createElement("article");
- document.createElement("footer");
- document.createElement("header");
- document.createElement("hgroup");
- document.createElement("nav");
- document.createElement("menu");
Strangely enough, this code seems to trigger Internet Explorer. To simply this process for each new application, Remy Sharp
Please Login or Register to see this Hidden Content
, commonly referred to as the HTML5 shiv. This script also fixes some printing issues as well.
- <!--[if IE]>
- <script src="
Please Login or Register to see this Hidden Content
"></script>
- <![endif]-->
-
PS I don't understand what he means with 'trigger' in the text.
Kind regards,
Willem