Why does my website not show up in IE?

5 replies
  • WEB DESIGN
  • |
My website works fine in Firefox, but when I tried to open it in Internet Explorer, nothing showed up.

Any suggestions?

Here is my website: [gone now ]
(Don't steal my niche now :p)

Thanks for the help!
#show #website
  • Profile picture of the author aesoft
    Originally Posted by twigman1200 View Post

    My website works fine in Firefox, but when I tried to open it in Internet Explorer, nothing showed up.

    Any suggestions?

    Here is my website: Amazing Cover Letter Creator
    (Don't steal my niche now :p)

    Thanks for the help!
    You have overlapping HTML tags. You have 2 style tags at the top and immediately after teh first 'style' tag you comment out the remaining styling because the '<!--' after the style tag isn't closed and multiple 'body' & 'head' tags.

    change (lines 10-12):
    Code:
    <style type="text/css"> 
    <!--
    <style>
    to:
    Code:
    <style type="text/css"> 
    <!--
    (remove the last '<style>' tag...

    Then change (lines 130-134):
    Code:
    </style></style>
    </head>
     
    <body>
    </head>
    to:
    Code:
    -->
    </style>
    </head>
    Hope this helps.
    {{ DiscussionBoard.errors[2746058].message }}
  • Profile picture of the author aesoft
    Oh... just noticed you have an extra closing '</body>' tag too. One needs to be deleted with the remaining one just right above/before the '</html>' at the very end.
    {{ DiscussionBoard.errors[2746085].message }}
  • Profile picture of the author Mike Hlatky
    Thanks for pointing those out.

    But, it's still not working. Any other suggestions?
    {{ DiscussionBoard.errors[2746228].message }}
    • Profile picture of the author Steve Wells
      Look in the css area....

      You will see this closing tag for your internal styles </style>

      You are missing this part of it...

      -->
      </style>

      Just replace your closing </style> tag with this below, and it should work.

      -->
      </style>
      Signature
      Need Custom Graphics Work? - Message Me For A Design Quote!
      {{ DiscussionBoard.errors[2746344].message }}
      • Profile picture of the author Mike Hlatky
        Originally Posted by EWGQDD View Post

        Look in the css area....

        You will see this closing tag for you internal styles </style>

        You are missing this part of it...

        -->
        </style>

        Just replace your closing </style> tag with it this below and it should work.

        -->
        </style>

        Thanks a lot!

        I am pretty much using an editor inside an editor so it keeps uncorrecting me.
        {{ DiscussionBoard.errors[2746358].message }}

Trending Topics