Okay. Didn't thought it was the page as to where the problem occurred. I thought it was your sig.
Anyway, as what my suggestion on post#2 says. A combination of
target attribute to that of your frame's name will help.
For example, on
menu.html. If you want that the page be viewed on the right frame, then you can add a
target attribute on those links.
Let me take for example the first link:
- Code: Select all
<a href="indexvisit.html">Guardian Visitation</a>
The result should load the page on the right frame when you click a link on menu.html (of course with the target attribute having a value to that of the frame's name).
Add
target attribute with a value to the of the right frame's name:
- Code: Select all
<a href="indexvisit.html" target="main">Guardian Visitation</a>
Hope that makes sense.