?? want frames constantly displayed / click Hyp link

G

Guest

Hi! I am desperate now, because I tried for hours.
The layout of my current webpage is as follows:
consists of three frames, one frame on the left which serves as navigation
bar, on frame on the top which consists of the webpages name. Last but not
least the third frame below the top frame and right beside the navigation
bar. The third frame is the biggest frame.

If I click on a hyperlink in the navigation bar (left frame) I want the
left frame and the header (top frame) constantly displayed and the new
webpage only opened (as a window) in the third frame. How does it work?
 
T

Trevor L.

Hi Floh,

I set up my index.html like this
<frameset rows="80,*">
<noframes>
To view this document, you need a frames-compatible browser
such as Netscape 2.0 and above.
</noframes>
<frame src="heading.html" name="heading" scrolling="no"
noresize="noresize">
<frameset cols="132,*">
<frame src="sidebar.html" name="sidebar" scrolling="no"
noresize="noresize">
<frame src="index_main.html" name="index_main" scrolling="yes"
noresize="noresize">
</frameset>
</frameset>

In my left frame (sidebar), you can use links like this
<a href="about.html" target="index_main">

On my website, I don't actually do this. Instead, I place this in the head
section
<base target="index_main">

Then the links can read
<a href="about.html"> without the target paramater

As they say, "it works for me", so give it a go
 
J

John

Hi! I am desperate now, because I tried for hours.
The layout of my current webpage is as follows:
consists of three frames, one frame on the left which serves as navigation
bar, on frame on the top which consists of the webpages name. Last but not
least the third frame below the top frame and right beside the navigation
bar. The third frame is the biggest frame.

If I click on a hyperlink in the navigation bar (left frame) I want the
left frame and the header (top frame) constantly displayed and the new
webpage only opened (as a window) in the third frame. How does it work?

Here's mine :

</head>
<frameset rows="64,*" framespacing="0" frameborder="0">
<frame name="banner" scrolling="no" noresize target="contents"
src="banner.html">
<frameset cols="20%,*">
<frame name="index" src="mainindex.html" target="main">
<frame name="main" src="main.html">
</frameset>

<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>

This is from an older site that I built at http://www.darkroompro.com .
 
S

Stefan B Rusynko

Makes sure your nav frame hyperlinks are set to target the third frame name
- right click in each of your other frames to set Page Properties and the default target for each
--




| Hi! I am desperate now, because I tried for hours.
| The layout of my current webpage is as follows:
| consists of three frames, one frame on the left which serves as navigation
| bar, on frame on the top which consists of the webpages name. Last but not
| least the third frame below the top frame and right beside the navigation
| bar. The third frame is the biggest frame.
|
| If I click on a hyperlink in the navigation bar (left frame) I want the
| left frame and the header (top frame) constantly displayed and the new
| webpage only opened (as a window) in the third frame. How does it work?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top