A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: why does Firefox display this site and not IE.

  1. #1
    Junior Member
    Join Date
    Nov 2009
    Posts
    9

    Unhappy why does Firefox display this site and not IE.

    Hey all

    Having problems understanding why this site

    http://www.brightmanrourke.com/

    is OK in Firefox but apparently doesn't show in IE. Any ideas why?

    Thanks

  2. #2
    Senior Member catbert303's Avatar
    Join Date
    Aug 2001
    Location
    uk
    Posts
    11,222
    Hi,

    I don't have IE to check this, but you've got this:

    <style type="text/css">

    <!--
    a:link {
    color: #09C;
    text-decoration: underline;
    }
    a:visited {
    text-decoration: underline;
    color: #069;
    }
    a:hover {
    text-decoration: none;
    color: #666;
    }
    a:active {
    text-decoration: underline;
    color: #09C;
    }
    .box {
    }
    </style>

    It opens a comment and then doesn't close it again. That seems like a very likely cause for the problem (the page also doesn't display in Opera and closing the comment fixes it there)

    <style type="text/css">
    <!--
    a:link {
    color: #09C;
    text-decoration: underline;
    }
    a:visited {
    text-decoration: underline;
    color: #069;
    }
    a:hover {
    text-decoration: none;
    color: #666;
    }
    a:active {
    text-decoration: underline;
    color: #09C;
    }
    .box {
    }
    -->
    </style>

    Hope this helps

  3. #3
    Senior Member
    Join Date
    Sep 2010
    Posts
    324
    Huge, major code errors that need to be corrected.
    Validate your code here:
    http://validator.w3.org/
    Best wishes,
    Video Man

  4. #4
    Junior Member
    Join Date
    Nov 2009
    Posts
    9

    resolved

    Thanks for this. Seems to be resolved now

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center