I am trying to add Modernizr into my wordpress installation. I do that by adding the following line, just after wp_head(); in the header:
<script src="<?php bloginfo('template_directory'); ?>/js/modernizr-custom.js"></script>
According to firebug the script is loaded, but the script doesn't seem to have effect in IE8.
I've added the following line into my css:
.borderradius body {
background: #c00;
}
In firefox the background turns red, in IE8 nothing happens.
article, aside, details, figcaption, figure, footer, header, main, nav, section are set on display: block;
What else could I possibly do to get it working in IE8?
Thanks a lot for your time.