View Full Version : Question!


niya429
02-02-2003, 04:19 AM
I did the whole transparency thing in the iframe, but I can barely see the words.

Is there a way to do transparency of only the background, not the text?

I've looked through the forum and I haven't found one that had this question answered already.

megs52
02-02-2003, 05:06 AM
Here's what you need to do: In the actual iframe code (that looks something like this: <iframe style="position:absolute;
top:81px;
left:330px;
width:349px;
height:131px;
border-width: 0px"
src="main2.html"
name="main"
frameborder=0
framespacing=0 allowtransparency=true></iframe>) you need to put allowtransparency=true (like I have). Then on every page that will actually be in the iframe, you need to put this code: <STYLE TYPE="text/css">
<!--
BODY {background: none; transparent}
-->
</STYLE>. I hope that helped!

niya429
02-02-2003, 09:03 AM
Thanks! That did help