Quote:
Originally Posted by dxflw
Yes but i want to see a ustom image front.
I.E. if the webiste from the iframe is loaded then i want to have a image to the top of the iframe to hide something from the site.
|
What you want is an image to sit ontop of the Iframe at x pixels by x pixels to hide some content of the iframe site??? Like a censor or unregistered members??
You could, I suppose, absolutely position a DIV Layer over the top of the iframe.
Code:
<div style="background: #000000; position:absolute; left: 0px; top: 0px; width:100%; height:20%;"></div>
That stretches all the way along the page, and the height is 20% of the page. You should get the height of the iframe from the source code and use that as the height of the DIV Layer.