I have a blogger which won't load in anything newer than IE7. What I have done as a temporary fix is use this meta code after the head tag to force the document into IE7 standards mode.
<meta content='IE=7' http-equiv='X-UA-Compatible' />
It detects that the page is IE7 standards mode by default, but still loads the page in IE9 standards mode in IE9 for example. Essentially, I need to force it to load IE7 standards mode by default.
Could this be to do with the fact that I am using A HTML 5 doctype? Here is the code up to the meta tag...
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:version='2' class='v2' expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta content='IE=7' http-equiv='X-UA-Compatible' />
Any ideas guys?