Hi, I have an iframe within a table cell. I want the iframe to have a fixed background image no matter what is displayed within it. The following is my code that works perfect in Firefox and Netscape, but does not work in IE. Does anyone know how I can work around this?
Actually I figured it out. All I had to do was make the background color of the source html page that fills the iframe transparent by adding this to the head:
<style type="text/css">
body {background-color: transparent}
</style>