I'm designing on a Mac but have tested this on Windows machines. I have set the iframe attributes to transparent background using CSS. It works perfectly in many of my browsers except IE and Opera, and on windows machines - IE and Netscape. The iframe's background in these browsers is white.
If anyone is familiar with these problems or can find inconsitancies within my code - please help this is a "proffessional" commercial website, my first as a recent graduate and freelance graphic designer. and my first post here on the very helpful WebDeveloper.com THANKS![]()
code for main page with iFrame reference within table:
example of one of the pages positioned within the iFrame:Code:<html> <head> <title>God Johnson Official Site</title> <LINK REL=stylesheet HREF="main.css" TYPE="text/css" id="cssHolder" /> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> <table id="Table_01" width="860" height="615" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="109" height="54"> </td> <td width="266" height="54"> </td> <td width="82" height="54"> </td> <td width="298" height="54"> </td> <td width="105" height="54"> </td> </tr> <tr> <td width="109" height="471"> </td> <td width="266" height="471" valign="top"> </td> <td width="82" height="471"> </td> <td width="298" height="471"> <div class="frame"><iframe width="298" height="471" name="right" frameborder="0" noresize></iframe></div></td> <td width="105" height="471"> </td> </tr> <tr> <td width="109" height="90"> </td> <td width="266" height="90"> </td> <td width="82" height="90"> </td> <td width="298" height="90"> </td> <td width="105" height="90"> </td> </tr> </table> </body> </html>
all applicable CSS:Code:<html> <head> <title>menu</title> <LINK REL=stylesheet HREF="main.css" TYPE="text/css" id="cssHolder" /> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body class="frame"> <img src="images/tourdates_black.gif" class="right" /> <h1 class="header">November pg. 02</h1> <hr align="center" size="1" width="99%" noshade color="#6f6f6f"> <h1 class="date"><a href="#" class="ltwo">Wed 11/30/2005</a> | <a href="http://www.cabooze.com" target="blank">The Cabooze</a> | Mpls MN</h1> <h1 class="one">With: tba</h1> <h1 class="one">Doors: 9:00 PM</h1> <h1 class="one">Show: 10:00 PM</h1> <h1 class="one">Info: $5.00 | 18+ | <a href="http://maps.google.com/maps?q=917+Cedar+Ave+-+Minneapolis,+MN&spn=0.032597,0.053816&hl=en" target="blank">click for map</a></h1> <hr align="center" size="1" width="99%" noshade color="#6f6f6f"> <br> <h1 class="next2"><a href="tourdates_nov.html" class="ltwo" target="right">< November pg. 01</a></h1> </body> </html>
Code:table {background-image: url('images/bg_open.jpg'); background-repeat: no-repeat; background-color: transparent; margin-top: -8px; margin-left: -8px; } table.two {background-image: none; background-color: transparent; margin-top: 0px; margin-left: 0px; } body {background-image: url('images/bg_wood.jpg'); background-repeat: repeat; } body.frame {background-image: none; background-color: transparent;} div.menu {border: 0px; margin-top: -5px; margin-left: 75px; } div.frame {background-image: none; background-repeat: no-repeat; background-color: transparent;}


Reply With Quote
Bookmarks