so I have an iframe:
<iframe style="width:100%;height:45px;position:fixed;top:0px;left:0px;z-index:2147483649" src="etc" scrolling="no" frameborder="0px"></iframe>
but then this iframe would conceal the top portion of the body contents since this iframe will be over the body contents….is there a way to configure this iframe with html, javascript, etc so that it wouldn’t conceal the body anymore (no dirty jokes plz)
EDIT
also I’m trying to get it to not scroll down and will always be absolutely on the top of the page even when the user scrolls the page down…but doing so without covering the body contents…think of a toolbar
Wrap your body content within a DIV and position it under the iframe.