Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ilayers and iframes

Status
Not open for further replies.

GUJUm0deL

Programmer
Jan 16, 2001
3,676
US
I'm having some problem trying to implement an <layer> (is it an <ilayer> tag) between iFrames...
This is how I was doing it:

<div id=&quot;Layer2&quot; style=&quot;position:absolute; width:436px; height:293px; z-index:2; left: 119px; top: 40px&quot;><ilayer><iframe id=onetoo name=&quot;one&quot; src=&quot;padding.html&quot; width=&quot;438&quot; height=&quot;291&quot; scrolling=&quot;No&quot; frameborder=&quot;1&quot; ></iframe></ilayer></div>

Any have any ideas?? I have not failed; I merely found 100,000 different ways of not succeding...
 
Nevermind, figured it out...if anyone wants to know, this is how I did it:

<iframe id=onetoo name=&quot;one&quot; src=&quot;padding.html&quot; width=&quot;438&quot; height=&quot;291&quot; scrolling=&quot;No&quot; frameborder=&quot;1&quot;>
<ilayer name=&quot;one&quot; width=&quot;100%&quot; height=&quot;100%&quot; NoResize Scrolling=&quot;no&quot; FrameBorder=&quot;1&quot;
SRC=&quot;padding.html&quot;></ilayer>
</iframe>
I have not failed; I merely found 100,000 different ways of not succeding...
 
I would like to point out one thing for you.

ILAYER-Is Netscape code:

IFRAME-Is MSIE code:

I saw the little chart at the top of these pages showing browser compatibility. And someone else has answered this question in another post asking what the difference between the two are.

Hope this helps!

colorado.gif
&quot;Quest for the Cup - 2002!&quot;​
 
Yeah, I know that...thas why I was putting in an iLayer tage so that NS4 could see it...
Thanks... I have not failed; I merely found 100,000 different ways of not succeding...
 
Once again im having some diffuclities with NS4...
I thought I had the right code statement for the <ilayer> tag...but I noticed now is that in NS4.72 two things happen:

1) It loads the iLayer tag, but at the same time it looses then side-menu effect...

and
2) It loads another copy of the <iLayer> tag a few spaces down...
Why?? The coding is right...

PS -- this is how I have both the iFrame and the iLayer tags displayed on the page:

<iframe src=&quot;models_page.html&quot; name=&quot;modelsframe&quot; height=&quot;100%&quot; width=&quot;540&quot; bottomscroll=&quot;no&quot; frameborder=&quot;0&quot; bgcolor=&quot;&quot;></iframe>

<ilayer src=&quot;models_page.html&quot; name=&quot;modelsframe&quot; height=&quot;100%&quot; width=&quot;540&quot; NoResize Scrolling=&quot;no&quot; FrameBorder=&quot;1&quot;></ilayer>
I have not failed; I merely found 100,000 different ways of not succeding...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top