Using Frame Page Target no working

  • Thread starter Thread starter Chunky
  • Start date Start date
C

Chunky

Hello I'm using the Banner, Contents and Main Page Frame set:

I've changed the banner target to main but it keeps bringing up the link in
the contents frame.

Why?

Here's my code whats wrong?

<frameset rows="162,*" framespacing="0" border="0" frameborder="0">
<frame name="banner" scrolling="no" noresize target="main"
src="message_board.htm">
<frameset cols="150,*">
<frame name="contents" target="main" src="leftbar.htm">
<frame name="main" src="homepain.html">
</frameset>
<noframes>

Please help this should be working!

http://www.planetbabble.com/TradeWithTheLittleGuys/index.html

Chunky
 
Hey it's me again I got it to work I pointed the hyperlink on my banner
frame to point to the parent frame and reload the index.

Was hoping it would work the correct way though.
 
Change the banner page HEAD section from
<base target="contents">
to
<base target="main">
Except for your Home link which would reload your whole frameset using
<a target="_parent" href="index.html">

--




| Hey it's me again I got it to work I pointed the hyperlink on my banner
| frame to point to the parent frame and reload the index.
|
| Was hoping it would work the correct way though.
|
| | > Hello I'm using the Banner, Contents and Main Page Frame set:
| >
| > I've changed the banner target to main but it keeps bringing up the link
| in
| > the contents frame.
| >
| > Why?
| >
| > Here's my code whats wrong?
| >
| > <frameset rows="162,*" framespacing="0" border="0" frameborder="0">
| > <frame name="banner" scrolling="no" noresize target="main"
| > src="message_board.htm">
| > <frameset cols="150,*">
| > <frame name="contents" target="main" src="leftbar.htm">
| > <frame name="main" src="homepain.html">
| > </frameset>
| > <noframes>
| >
| > Please help this should be working!
| >
| > http://www.planetbabble.com/TradeWithTheLittleGuys/index.html
| >
| > Chunky
| >
| >
|
|
 
Back
Top