Im already have allow transparency set like so:
<iframe src="/contact/contactus.ph
So where exactly should I add the background-color: transparent?? Just plop it in anywhere above the body?
Main Topics
Browse All TopicsI am by no means a web designer. Someone made me a template to use on my website and I am loving it. I am using a contact for in an iframe and when viewed in firefox it looks great (transparent background), but when I view it in IE the BG is white.
page: http://stevenvona.com/cont
Can anyone point me to the correct code to get this to work in both browsers?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
savone, I'm looking at the contact.html source code now and I can't see the allowtransparency="true" set in the iframe tag. If you are using another server it will help to see it too or you may paste the entire code using the "Attach Code Snippet".
Your contactus.php file has no <hTML>, <head> nor <body> tags. I will sure add them. The code should look like the one attached.
DO NOT REPLACE YOUR CODE WITH MINE SINCE MINE IS ONLY THE HTML PART OF THE PHP FILE!
...
<style type="text/css">
<!--
html, body, form{
margin: 0;
padding: 0;
}
body{
background-color: transparent;
}
-->
</style>
...
The style tag adds the background-color option.
Business Accounts
Answer for Membership
by: PanchuxPosted on 2009-09-20 at 19:07:56ID: 25379899
Hi in the CSS of the body of the file called contactus.php add "background-color: transparent" and in the iframe tag on contact.html add allowtransparency="true".
p" width="610" height="460" frameborder="0" scrolling="no" allowtransparency="true"></i frame>
This way
...
<iframe src="/contact/contactus.ph
...
Hope that helped,
Pancho