Thread: HTML Help
View Single Post
 
Reply
Posted 2005-08-19, 12:47 PM in reply to Joka69's post starting "with frontpage it would be easy, i..."
Looks like we'll have to work it out in Notepad then.

----------

Code:
 
<iframe name="I1" width="{width}" height="{height}" border="{border}" frameborder="{border}" sc="{page}">
Your browser does not support inline frames or is currently configured not to display inline frames.</iframe>
Put that into your page where you want it. You can, of course, change the width, height, border and frameborder. Where page is, you will of course have to put the page that you want to be shown in the frame.

Then, you'll need to set the hyperlinks to open in the frame. The HTML code should look like:

Code:
<a target="{frame name eg I1" href="{page you want shown in the frame}">{page you want shown in the frame}</a>
SO, let's say you've made a frame and called it "frame", and the page the link is for is called "link", then this is what the two parts of code will look like:

Code:
<iframe name="frame" width="100" height="100" border="0" frameborder="0" sc="initial">
Your browser does not support inline frames or is currently configured not to display inline frames.</iframe>
Initial is the first page that will be shown in the frame before you click any links.

Code:
<a target="frame" href="link">
Link</a>
If you need an example with the rest of the HTML, then I'll throw you together a page and post the HTML with it.

Last edited by Lenny; 2005-08-19 at 01:04 PM.
Old
Profile PM WWW Search
Lenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basics
 
 
Lenny