Viewing 3 replies - 1 through 3 (of 3 total)
  • Are you sure you went all the theme files that are on localhost for the server online? Apparently not disclose the URL, so I urge you inspect the online home with firebug, and verify that the URL is pointing to the CSS server online and to the correct directory.

    Back here with the information that I try to help. If you had access to the link would be easier to identify the problem.

    Thread Starter j0nswp

    (@j0nswp)

    I tried Firefox with Firebug, and whether or not i use localhost or the server name, it loads just fine in Firefox.

    I tried another workstation that has IE8, still does not load properly. I even tried from a COMPLETELY different domain, hitting the IP address (after updating the site URL to use the IP), still fails. I use Firefox with Firebug, no issues. I use Firefox with Firebug from that other workstation, works and loads fine.

    Definitely something with IE or IIS, but I did an IE reset, still not working.

    Thread Starter j0nswp

    (@j0nswp)

    I figured it out, after quite a lot of searching, I had to modify the header.php above <head> from:

    <!--[if IE 7]>
    <html class="ie ie7" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if IE 8]>
    <html class="ie ie8" <?php language_attributes(); ?>>
    <![endif]-->
    <!--[if !(IE 7) | !(IE 8) ]><!-->
    <html <?php language_attributes(); ?>>
    <!--<![endif]-->

    to:

    <html class="ie ie8" <?php language_attributes(); ?>>
    <meta http-equiv="x-ua-compatible" content="IE=8" >

    Soon as I completed this, it now looks great in IE8 – IE11, FF and Chrome.

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘IIS 8.5, WordPress and CSS not working’ is closed to new replies.