Web Analytics Made Easy -
StatCounter NS7.1/win won't view my page, but IE 6/w & Opera 7/w read it OK? - CodingForum

Announcement

Collapse
No announcement yet.

NS7.1/win won't view my page, but IE 6/w & Opera 7/w read it OK?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • NS7.1/win won't view my page, but IE 6/w & Opera 7/w read it OK?

    I built my IFrame on Notepad, and formatted it with CSS. I've got no problem viewing it through any of the browsers I mentioned in the subject line, offline.

    But the uploaded version of the same page doesn't show any of the jpgs - is there an easy fix? Or even a complicated one? I'd never before come across code that NS disliked that Opera didn't mind.

    This is the simplified version of what's on my code:

    <body>
    <div id="index"> <img align="middle" src="Images\image1.jpg" />
    <p><a href="link1.html" target="frame">Page 1</a></p>
    <p><a href="link2.html" target="frame">Page 2</a></p>
    <img align="middle" src="Images\image2.jpg" />
    </div>

    <div id="frame">
    <iframe height="310" frameborder="0"
    src="firstpicture.html" name="frame" scrolling="auto">
    </iframe>
    </div>

    </body>

    Is it something to do with NS and DIVS or IFRAMES?

    Thanks
    x x Stressed Out Gabrielle
    And is our future wounded by Philosophies our daddies had?
    - - Alisha's Attic - -

  • #2
    It could be as simple as the fact that you used a single identifier TWICE.

    You have a DIV with an ID of "frame" and then also used "frame" as the name of the iframe. That can create confusion as to what you intend when you have target="frame" in your a tags.

    Also note that name="frame" may also not be understood properly, the iframe should have an id="whatever" tag instead.

    Fix those two things and you could be good to go.
    Check out the Forum Search. It's the short path to getting great results from this forum.

    Comment


    • #3
      Thanks Roy

      I solved that one myself, eventually, but thanks for your help anyway - I'll try to avoid dupes in future.

      Meanwhile, I've developed another fault, but I'll post elsewhere about it, later.

      Thanks again
      And is our future wounded by Philosophies our daddies had?
      - - Alisha's Attic - -

      Comment

      Working...
      X