Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

http://goo.gl/QEPUl

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.