Hi John, I haven't checked that the new link works in IE, but I don't get why the second link would work if the only difference is that stylesheet is linked via a relative path "style.css" when from that page that path seems to resolve to the same as the absolute path which doesn't work. I don't have an explanation for this so I can't really offer any advice. My first thought was that you needed to use one of WordPress's path functions to address the stylesheet as shown here: http://codex.wordpress.org/Template_Tags/bloginfo so you might use: <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
...but that would just output the same absolute address that appears to be inexplicably associated with the problem. Sorry, but I still don't have my head around the problem. Joel Birch.