Strange issue with CSS

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

Your internal web browser may be in compatibility mode. Makes it work like it was IE7 or earlier.

I managed to solve it with:

<meta http-equiv=“X-UA-Compatible” content=“IE=8” />

You would be better off with ‘edge’ as you don’t want newer versions to behave like buggy ie8 :slight_smile:


  <meta http-equiv="X-UA-Compatible" content="IE=edge">