spf00
1
Hello,
I’m trying to figure out why my CSS works correctly when viewed publicly, but not on my internal web server.
The menu works correctly at:
http://crango.uofydating.com/test/new.php
However, when I upload exactly the same code on my internal web server, and view it in exactly the same browser (IE 8), I see the attachment.
Any ideas what might be occurring?
Thanks
ronpat
2
Your internal web browser may be in compatibility mode. Makes it work like it was IE7 or earlier.
spf00
3
I managed to solve it with:
<meta http-equiv=“X-UA-Compatible” content=“IE=8” />
PaulOB
4
You would be better off with ‘edge’ as you don’t want newer versions to behave like buggy ie8 
<meta http-equiv="X-UA-Compatible" content="IE=edge">