Web Analytics Made Easy -
StatCounter IFrame and NS6 - CodingForum

Announcement

Collapse
No announcement yet.

IFrame and NS6

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

  • IFrame and NS6

    I'm having trouble with the iFrame tag in Netscape 6 - for some reason the iframe is not displaying...

    here's the code <iframe src="the_html_file" width="98%" height="75%" frameborder="0"></iframe>

    Thanks for your help.

    ~Quack

  • #2
    qua...
    mayyybe this link will just a help®...

    just a goodluck® :O)))
    The New JustaBuster Version 2.0 OR JustaBusta Lite V2.0
    ...just a special® thanx kinda hugs to jkd n' nex ...:O)))

    CommemorateWTC.com --Please lend your support

    Comment


    • #3
      I've used iframes all the time with no trouble at all in Moz. I always use CSS as opposed to width and height attributes though, but that wouldn't affect it not displaying.
      jasonkarldavis.com

      Comment


      • #4
        What would be the best way to apply CSS to an IFrame?

        Also, what's the proper format for Netscape 4 proofing the IFrame (using ILayer)

        To clarify, where should I put the ILayer tags to correspond with the IFrame tags...

        Code:
        <iframe src="blah"><ilayer src="blah"></ilayer></iframe>
        Would it be something like that?

        Thanks

        ~Quack

        Comment


        • #5
          That way seems fine, though it really doesn't matter. The tags are currently mutually exclusive (no browser supports both).

          Anyway, I just go for CSS:

          iframe {
          width: bla;
          height: bla;
          /* etc */
          }

          Or assign it an id and style it from #myid. or a class, and from .myclass
          jasonkarldavis.com

          Comment


          • #6
            thanks jkd,

            I'll give it a try and let you know how it goes...

            Comment

            Working...
            X