How To Make Iframes
To understand Iframes you have to know atleast a little html, if not your stuck. But if you do pay attention. Iframes are short for Inline Frames. So this means you will have an inline frame. Deside where you want your Iframe and place it their. Make sure your width and height match your layout or it won't look right. Place the URL of the starting page in the script in red its usually your updates page. Next center, align left, or right the Iframe. Frame border and scrollings not important unless you want it to surve a sertain purpose.
Now for the more important role in Iframes targeting the iframe. You are gonna have to change your link's targets to your Iframe's name. See it in orange, even if the Iframe's name was "B-V" as long as your targets are "B-V" they will open in the Iframe. See 'Targets' for more help on targeting Iframes. Here is the Iframe script:
<IFRAME name = "iframe" src = "page url here.html" width = "width here" height = "height here" scrolling = "auto" frameborder = "0" align = "right" > </IFRAME>
|