I am positioning a menubar in an IFrame and I dont want the IFrame to be apparent. It continues to show up as an inset frame.
style sheet looks like this.
.menuFrame{
frameborder:0;
width:100%;
height:25px;
marginwidth:0px;
marginheight:0px;
padding:0px;
background-color:#1efefe;
width:100%;
border-style:none;
scrolling:no;
}
and the HTML looks like this
<iframe class="menuFrame" ID="menubar"></iframe>
If you want to see it you can go to
www.ssscuba.com/testindex.html
I want the table to show up as if there were no frame there. When I tried to use the Div tag it wipes out the current page and puts the menubar neatly at the top of the page.
Thanks for your help.