It should work. Try display:none !important
. Otherwise, try ugly hack
border:none;
width:1px;
height:1px;
visibility:hidden
fabjoa
2010-08-03 09:18:54
It should work. Try display:none !important
. Otherwise, try ugly hack
border:none;
width:1px;
height:1px;
visibility:hidden
make width and height to 0
this way you can hide iframe
Example :
<IFRAME SRC="hello.html" WIDTH=0 HEIGHT=0>
If you can see this, your browser doesn't
understand IFRAME. However, we'll still
<A HREF="hello.html">link</A>
you to the file.
</IFRAME>