Hi,
Your path in the link is incorrect. I'm terrible on paths, but this is a relative path. OK, let's say you are on
Code:
simpleviewerarchcitynorthamerica/simpleviewer/archcitynorthamerica.htm
and you click on the link for the man made, because the link is
Code:
<a href="simpleviewerstillmanmade/simpleviewer/stillmanmade.htm">
the browser takes that link as relative to where you are now, not as relative to the root directory. So, the browesr says, I am at directory simpleviewerarchcitynorthamerica/simpleview/, that means that the full path from here to simpleviewerstillmanmade etc. is simpleviewerarchcitynorthamerica/simpleview/simpleviewersstillmanmade/simpleviewer/whateverPage.
So, you need to set the link so that it is relative to your root directory, or set an absolute link. Since you are in
Code:
http://root directory/northameric directory, simpleview directory
, you would have to go back two directories to get to the root, and a relative link would be ../../simpleveiwersstillmanmade etc. [I think .... I hate paths, I just use full paths like below]
Code:
http://www.graymatterimages.com/simpleviewersstillmanmade/simpleviewer/whateverPage
Hope this helps.
Ruth
Bookmarks