|
|
ianm
regular
Reg'd: Fri
Posts: 349
Loc: Colchester
|
Re: Link targets
Thu May 20 2004 11:47 PM
|
|
|
Sounds like your using a frame site Matt, ok the frame you want the page to load in needs to be given a name ie, name="main" Now that frame has a name you can go back to your navigation page and tell it you want the page to change in the frame called main like this target="main"
so if you want a frameset with your navigation on the left and that frame to be 200px wide and your other pages on the right and to take up the rest of the screen you should end up with a frameset something like this
<frameset cols="200,*"> <frame name="contents" target="main" src="contents.htm" scrolling="no"> <frame name="main" src="home.htm"> <noframes> <body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body> </noframes> </frameset>
so it looks like your missing the "target" bit Matt.
Regards Ian
|
|
|
|
|