Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
As that’s a commercial theme your best support would come from the vendor.
http://mintthemes.com/support/
Generically speaking, try disabling all of your plugins and see if that improves the IE situation for you.
– resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.
Mysteriously it works now. I messed around in the CSS, turns out I had one too many @font faces and perhaps something wasn’t closed up properly.
Actually… now only the home page works. What!? Every other page still fails to load the template.
Every other page still fails to load the template.
caused by the relative path to the stylesheet:
<link rel="stylesheet" type="text/css" href="wp-content/themes/Micah/style.css" />
change that (or whatever there is in header.php of your theme) to the absolute path as done in the default theme:
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
That worked. Thanks. My own fault – in trying to fix it I changed that and forgot to change it back. Duh.