Forum Moderators: not2easy
Our website is really not well designed.. We have 3 iFrames.. A title, a nav, and content.
¦-----------------------¦
¦ Title ¦
¦-----------------------¦
¦ ¦ ¦
¦ N ¦ ¦
¦ A ¦ CONTENT ¦
¦ V ¦ ¦
¦____¦______________________
FOOTER
On the current page I am devloping, I need to place a layer, or a div, above and under "my" iFrame.
I have attempted:
1. Using a <layer> tag and making the postition 0, and it still seems to be relitive to my iFrame
2. Using CSS in a div tag to posision a div:
<style>
.foo
{
position : absolute;
left : 0px;
top : 0px;
width : 100px;
height : 500px;
overflow : scroll;
}
</style>
Still with no luck.
Any ideas?
I'm a little confused by your question, though. Is "your" iframe the content one, or do you have control over the whole page? Are you trying to place your CSS within the document held in your iframe or in the frameset page? Am I right in thinking you want to place your
div over the top of one of your iframes, or outside of it?