sure. well the first option is this.
inside either a table tag, or the body tag, even a div tag and the actual "iframe" tag, you can add this css style that makes each of those properties semi transparent. and it would look something like this:
<body style="filter: alpha (opacity=50)">
in here, the entire body of the html will be given an opacity, ranging from 0 to 100. 0 being completely transparent, and 100 being not transparent at all. and 50 being somewhere in the midde hence, semi transparency. its a really neat effect.
the down side to this, is tha it makes all of the content in the body transparent as well. as in the text, and any images or whatever i might have on the page. whether i apply this style in the body tag, the ifram tag, or a div tag. its all the same.
the other option i have found available to me is one that makes a table or iframe transparent, BUT not the content, (like the text). however what i don't like about this options is that it makes the iframe COMPLETELY see through. and i only want it SEMI- see through. semi transparent. this code works like this.
in the ifram tag <iframe src="blahblah.htm"></iframe> you would put this inside it like so:
<iframe src="blahblah.htm" allowtransparency="true">
and then in the actually html file tha you want IN the iframe, you would put this int he body tag:
<body style="background-color: transparent;">
this is cool and all, it only makes the background transparent but not the text, however i can't figure out a way to change HOW transparent it really is. and that's my problem.
for a visual example. try looking at this.
http://ere-serene.org/transparentscrollbars.php
right here she talks about scrollbars but it can be applied to the whole iframe or specific tables and divs real easily so that's not important. this is just an example so you can see what i have right now, and what i'm trying to get. if you read the last sentense in her tutorial, she says: "That's all 0.o Keep in mind that whatever you put your opacity as, your text gets more transparent too. Easy site made, with transparent scrollbars!"
and tha's what i don't want. and what i'm trying to figure out. how to get semi transparency background and scrollbars, without semi transparent text.
let me know if you know.

thanks again and i hope tha clarifies things.