I need to load a page with an iframe in a way that its header is hidden. I tried the following but for some reason it isn’t working:
<div style="width:945px; height:600px; overflow:hidden;">
<iframe src="innerpage.html"
frameborder="0"
height="700"
scrolling="no"
width="945"
style="top:-100px" />
</div>
What meder said is true, but it could also be that your style wouldn’t do anything. You’ll need to set
position: absoluteorposition: staticin order fortopto have any impact.This will just move the whole iframe up though, not the content within the iframe.