Colin said:
I'm trying to build my site and need some help from some of you wonderful
people!!!!
my site is members.dodo.com.au/~niloch1
I need some comments on the HTML and how to fix what I have done
please send comments to (e-mail address removed)
I look forward to your response
Colin,
OK, there are many changes that could be suggested for your site, but
I'm going to focus on the one that is most apparent to all of your
visitors: If you click on the links at the right side of the screen, the
resulting page is loaded over those links. This means that the page
can't really be seen (most of it is off screen) and also means that the
links are now gone, leaving the user with only the browser's 'Back'
button for navigation.
You are using frames. When you activate a link within a frame, the
default is to load the target page into the same frame as the link.
That's what is happening now. What you WANT is for the target page to
be loaded into the larger scrollable frame to the left of the links.
You have given that frame a name: "mainFrame". What you need to do is to
specify on the links that mainFrame is where you want the target page to
be loaded, not in the same frame as the link.
To do this, on page SideFrame.htm, you need to insert target="mainFrame"
inside each of the Anchor tags, thus:
<a href="colin.htm"> should become <a href="colin.htm"
target="mainFrame">
You should make the same change to each of the six links.
Whether you use this newsgroup or alt.html.critique (which concentrates
on reviewing sites, sometimes with a rather heavy hand), you may find
the information at
http://pages.prodigy.net/chris_beall/alt.html.critique/How to.html to
be helpful.
Regards,
Chris Beall