I see you've put an iframe in or on top of the Nav area. That isn't what I meant at all but, at least you are starting to use an iframe. That's a step in the right direction. My idea is that you have only one page with the Nav on it, call it nav.html. On that one page where you now have a large content block on the right side of the page that displays the details for each Nav item, make that content block an iframe. Then, each time you click on a link in the Nav, have it update the contents in that iframe. The way this is done is to give the iframe a name:
Code:
<iframe name="contents" src="pr_aboriginal.html" width="610" height="510" frameborder="0" marginHeight="0" scrolling="no"></iframe>
Put this iframe in place of the "copy" and "hero" divisions. The pr_aboriginal.html and all of your other pages like pr_lively and pr_modern will need to be changed to fit inside the iframe, to only have the specific content on them (only the "copy" and "hero" divisions), not the Nav or other page elements like decoration, logo, etc. Then for your links in the Nav (on nav.html) use:
Code:
<a href="pr_lively.html" target="contents"><img src="images/thumbs/jet_tmb1.jpg" width="60" height="60" alt="view jet star" class="thumb_left"/>
<img src="images/thumbs/jet_tmb2.jpg" width="60" height="60" class="thumb_right" alt=""/></a>
<div style="width: 105px;">
<p style="font-size: 60%; float: left; "><a href="pr_lively.html" target="contents">Large</a></p>
<p style="font-size: 60%; float: right;"><a href="pr_lively.html" target="contents">Small</a></p>
Using a bit of trickery that you should not, this is close to how it will look and work. (Works best in IE6, it is a demo only.)
Bookmarks