Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Anchor my left frame 1

Status
Not open for further replies.

solo7

Technical User
Mar 14, 2001
243
NO
I want to redesign my site.
This time I want to have my site based on a 2 frame page (vertical split). I want to maintain the left frame which will contain the links and menus (anchor it), and have the resulting navigation appear in the right frame.

Can any kind sole give me a clue or hint as to how I can get the navigation to appear in the right frame. At the moment when I click on a hyperlink the underlying left frame refreshes with the target page.

Steady ... [thumbsup2]
 
Name your frames something like content and menu

<frameset cols=&quot;130,1*>
<frame src=&quot;menu.html&quot; name =&quot;menu&quot;>
<frame src=&quot;content.html&quot; name =&quot;content&quot;>
</frameset>

then in your link tags from your navigation menu specify the target attribute as follows

<a href=&quot;nextpage.html&quot; target=&quot;content&quot;>clickme</a>

regards
Ian
Infinity exists! - I just haven't worked out a way to get there yet.

| |
 
Works a treat !!

Many thanks

Steady ...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top