I have a HTML5 Doctype declaration and an IE8 Emulator but i am running in to problems on windows xp that is using windows 7
I cant click on the website links or navigate around on the website. I thought it was the colorbox overlay at first causing issues but this is not the case otherwise it would have caused issues in IE7 on windows 7
Here is the declaration
<!DOCTYPE html>
<html>
<head runat="server">
<meta http-equiv="x-ua-compatible" content="IE=EmulateIE8" >
Is there someway of detecting the OS the user is using and depending on that maybe change the doctype or is that just a long shot?
Has anyone else had issues with this sort of problem before?
UPDATE: CSS issue for IE7 only
html {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/img/background.jpg', sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/img/background.jpg', sizingMethod='scale')";
}
It was the full scale background - need to find another way around this. Thank god it was not something else.
Issue is 90% fixed now.