Forum Replies Created

Viewing 1 replies (of 1 total)
  • I installed the new version of the theme 1.4.1 (never had the old one installed) and when I bring up my webpage the theme styling is all messed up in IE10. It works fine in all other browsers. I found IE was automatically switching the standards to IE8 Standards. For compatibility mode, I have both the display all intranet sites and display all websites in compatibility view unselected.

    I found a solution on stackoverflow.com, https://stackoverflow.com/questions/13284083/ie10-renders-in-ie7-mode-how-to-force-standards-mode. I ended up removing the meta tag from the header.php and replacing it with

    <?php header(‘X-UA-Compatible: IE=edge’); ?>

    This fixed my problem. I found by modifying the meta tag to be

    <meta http-equiv=”X-UA-Compatible” content=”IE=10,IE=9,IE=8″ />

    worked also, but I’m going to stick with the header instead of the meta tag. I hope this helps if anyone has the same issue.

Viewing 1 replies (of 1 total)