View Full Version : UGH! Positioning


Bebe x Baby Luv
06-05-2003, 11:55 PM
I know yeah....absolute positioning...eh

-- > http://shifty.dissendium.net/main.html

ok, so how do u get your Iframe ontop of your image?
and my absolute positing isnt working. I think i got to much stuff in there...
look -->

just the body tag

<body>

<img style="position:absolute; left:0px; top:0px;" src="kk517.bmp">

<iframe src="main.html" height="500" width="270" name="myIframe" border="0" frameborder="0" "position:absolute; left:5px; top:1000px;" style="filter:alpha(opacity=50)"></iframe>
</body>

Elentari
06-06-2003, 12:24 AM
The code has to be like follows:


<iframe src="main.html" height="500" width="270" name="myIframe" border="0" frameborder="0" style="position:absolute; left:5px; top:1000px;filter:alpha(opacity=50);"></iframe>


your positioning is CSS so it has to be in the style tag.

Bebe x Baby Luv
06-07-2003, 12:11 AM
thnx