Inline frames are frames that can be placed anywhere on your page by absolute positioning.
Use the following code to create your frame:
This is the code for a regular iframe:
< iframe name="
inlineframe" src="
yoururl.html" width=
200 height=
200 marginwidth=0 marginheight=0 frameborder=0 scrolling=auto > < / iframe > (i have got gaps inbetween the tags because otherwise it gets blanked out)
And this is the code for an iframe with transparent scrollbars (IE only):
< iframe name="
inlineframe" src="
yoururl.html" width=
200 height=
200 marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=auto style="FILTER: chroma(color=#
ff0000)" allowtransparency="true" > < / iframe >
To make your iframe scrollbar transparent, you need to add this tag, remember that this only works in the IE browser: style="FILTER: chroma(color=#
ff0000)" allowtransparency="true" to your iframe tag.
In order to link to this inline frame from your main page, you would name your inline frame whatever you want (for instance "inlineframe") and then the link on your main page would need to target the iframe like this:
< a href="
inline.html" target="
inlineframe" >
Your link name here < / a >
Of course, all the information in bold can be changed to have your own information.
i hope that helps any questions on Inline Frames
