transparency?
-
- Posts: 7
- Joined: Fri Jan 13, 2006 1:38 pm
transparency?
Is it possible to make the Mboard transparent? (so if I have on my site in an IFRAME the background of the site is visible?)
Not sure what you mean, but you can add your own background to MBoard, for example by editing the CSS file.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
-
- Posts: 7
- Joined: Fri Jan 13, 2006 1:38 pm
Hello callmecheez,
Especially for you i tried google to find your answer. I googled for "transparent iframe" and the first presented link was the answer. Here it is:
Henrie
Especially for you i tried google to find your answer. I googled for "transparent iframe" and the first presented link was the answer. Here it is:
Greetings,How to make transparent Iframes
**This only works with Internet Explorer 5.5+ and Netscape 6+ browsers**
First code your page that will be the Iframe being sourced, (src="<filename.html>), put the style code below in between the head tags like so:
<style type="text/css">
body {background-color: transparent}
</style>
Then on the page where you call the iframe add the below code:
<iframe name="something" src="filename.html" allowtransparency="true" background-color="transparent" >
</iframe>
Henrie