Internet Explorer
IFrames on your site
Perhaps a little basic HTML knowledge
Adding Iframes
What are Iframes?
Iframes is like an 'area' on a webpage where an external page is displaid. In other words it's where a webpage is show up in another page.
How do I create an Iframe on my site?
Step 1
Create two files named page1.htm and frame.htm. You can use Notepad (on Windows) to do this.
Step 2
Open up page1.htm, and add the following HTML code:
CODE
Here is an Iframe: <be />
<!-- IFRAME CODE begin -->
<iframe src="frame.htm" width="NUMBER" height="NUMBER" frameborder="0" />
<!-- IFRAME CODE end-->
Edit 'NUMBER' with whatever number you like. This specifies how big the Iframe should be. Save the file.
Step 3
Open up frame.htm and add a whole blob of text. Whatever you like -- it's just a test.
Then just open up page1.htm and you should see the content from frame.htm appear on the page. Save the file.
Transparent Iframe Scrollbars
This code only works with Iframes when viewed with Internet Explorer.
Step 1
You add the code to the page that is in the iframe, in other words, frame.htm. Delete everything in frame.htm, and just add the following code:
CODE
<div style="position:absolute; left:0px; top:0px; width:NUMBER px; height:NUMBER px; z-index:1;overflow: auto; FILTER:chroma(color= COLOR); overflow: auto;
scrollbar-base-color:COLOR;
scrollbar-track-color:COLOR;
scrollbar-3dlight-color:COLOR;
scrollbar-darkshadow-color:COLOR;
scrollbar-shadow-color:COLOR;
scrollbar-highlight-color:COLOR;
scrollbar-arrow-color:COLOR;">
THE MAIN STUFF GOES HERE.
</div>
Step 2
Firstly, add in the width and height of teh Iframe at the very top where it says 'NUMBER'. Width and height has to be the same as it is for the Iframe in page.htm -- otherwise it won't work.
For Chroma(color=COLOR) put in the color you want to be invisible. For example, if you set this to green, you will need to set the base color, the track color, and everything that you want transparent green. You can leave the arrow bars a different color so that they will show up.
Step 3
Save teh files and open them up in Internet Explorer. They should now be transparent if you followed the tutorial carefully.

