IE5 Page loading incorrectly until Refresh

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Paul Collins

    IE5 Page loading incorrectly until Refresh

    Hello,

    I am currently having a problem with IE version 5.0 on windows. When
    you first enter the site I am working on the Layout is OK. When you
    click on any of the links, the layout is screwed up. Once I hit
    refresh, however, the page loads correctly.

    I am using the following technology:
    XHTML Transitional 1.0
    CSS (For layout, all tags are <DIV>'S)
    XML
    ASP.net
    There is a single IFRAME for a drop-down select on the page.

    The odd thing is that on my local machine, when I test it, the error
    doesn't occur, it is only on the Live version.
  • Mark Tranchant

    #2
    Re: IE5 Page loading incorrectly until Refresh

    Paul Collins wrote:
    [color=blue]
    > I am currently having a problem[/color]

    <snip>
    [color=blue]
    > The odd thing is that on my local machine, when I test it, the error
    > doesn't occur, it is only on the Live version.[/color]

    That's the live version for which you didn't supply a URL, thus preventing
    us from even investigating the problem?

    --
    Mark.

    Comment

    • Paul Collins

      #3
      Re: IE5 Page loading incorrectly until Refresh

      Thanks for pointing that out Mark, the URL is: http://www.edexcel.org.uk

      Any ideas?

      Cheers,
      Paul

      Mark Tranchant <mark@tranchant .plus.com> wrote in message news:<VpPjc.356 42$h44.5284977@ stones.force9.n et>...[color=blue]
      > Paul Collins wrote:
      >[color=green]
      > > I am currently having a problem[/color]
      >
      > <snip>
      >[color=green]
      > > The odd thing is that on my local machine, when I test it, the error
      > > doesn't occur, it is only on the Live version.[/color]
      >
      > That's the live version for which you didn't supply a URL, thus preventing
      > us from even investigating the problem?[/color]

      Comment

      • Mark Tranchant

        #4
        Re: IE5 Page loading incorrectly until Refresh

        Paul Collins wrote:
        [color=blue]
        > Thanks for pointing that out Mark, the URL is: http://www.edexcel.org.uk[/color]

        Looks good here, although I don't have IE5.0 on hand. All your <img>s have
        width and height specified, which was my first guess.

        The validator is showing several errors:



        You need to use &amp; instead of &, but that shouldn't be causing the
        errors. You need to specify a media type in your script tags, like this:

        <script type="text/javascript">

        but that shouldn't cause the error. The only error you have that may be
        causing the problem is the mismatched </ul> on line 732. Fix that and all
        the other minor errors, and come back if the problem persists.

        There are also a couple of minor errors in your CSS:



        but they shouldn't affect the outcome. You ought to fix them anyway, though.

        --
        Mark.

        Comment

        • Paul Collins

          #5
          Re: IE5 Page loading incorrectly until Refresh

          Hi Mark,

          The error was fixed by putting tables around the breaking sections as
          opposed to CSS. This is not the perfect remedy, but IE5 is not the
          perfect browser. We also cleaned up the code to validate, which I'm
          sure helped us out. I'm really not 100% on what the exact problem was,
          but at least it's fixed!

          Thanks for your comments, much appreciated.

          Paul

          Mark Tranchant <mark@tranchant .plus.com> wrote in message news:<D76kc.358 43$h44.5335514@ stones.force9.n et>...[color=blue]
          > Paul Collins wrote:
          >[color=green]
          > > Thanks for pointing that out Mark, the URL is: http://www.edexcel.org.uk[/color]
          >
          > Looks good here, although I don't have IE5.0 on hand. All your <img>s have
          > width and height specified, which was my first guess.
          >
          > The validator is showing several errors:
          >
          > http://validator.w3.org/check?uri=ht...dexcel.org.uk/
          >
          > You need to use &amp; instead of &, but that shouldn't be causing the
          > errors. You need to specify a media type in your script tags, like this:
          >
          > <script type="text/javascript">
          >
          > but that shouldn't cause the error. The only error you have that may be
          > causing the problem is the mismatched </ul> on line 732. Fix that and all
          > the other minor errors, and come back if the problem persists.
          >
          > There are also a couple of minor errors in your CSS:
          >
          > http://jigsaw.w3.org/css-validator/v...usermedium=all
          >
          > but they shouldn't affect the outcome. You ought to fix them anyway, though.[/color]

          Comment

          Working...