Your biggest problem is that you are using Absolute positioning to lay out the page. This will ALWAYS lead to problems.
Open the page in FireFox, and use
Zoom->Text Only (so this is ticked)
then use View->Zoom in to enlarge the text.
The result really is a mess. And people WILL enlarge the text.
On top of that, a page should be constructed as follows (in code view):
<!doctype>
<html>
<head>
<title>
meta tags, styles and javascript
</head>
<body>
page content goes here
</body>
</html>
Yours is:
meta tags, styles
<html>
<body>
<body>
page content
</body>
</html>
<html>
<head>
<title>
</head>
<body>
Notice the 3 <body> tags instead of the one required, and the wrong location of <html> and <head> tags (don't worry about <!doctype>, yet).
That needs tidying up before attempting to fix the layout problems.
I suggest going through the HTML tutorials at
http://w3schools.com, and also look at the Basic Web Site tutorial at
http://by-expression.com/content/tutorials.aspx
This tutorial was written for Expression Web (not FrontPage), so some of the methods may not make sense, but it does explain how a web page should be constructed and laid out.
Over the next few days, I will try to sort out
http://studentorg.clayton.edu/sna/ to some extent.
--
Ron Symonds - Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp/wf-menu.aspx
Microsoft is closing this newsgroup - for details of why and where to go see
http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
Rfaulkner pretended :
Thank you so much for trying to help me. I'm
going to need a decoding book to figure out
what you told me to do!! I'm just a nursing
student and this stuff is like reading a
foreign language, but slowly I'm getting the
hang of it.
My URL is
http://studentorg.clayton.edu/sna and
it's pretty pathetic.
My default page setting is at 955 x 600, but
when I shrink it down to a smaller size, like
600 x 300, it only changes my view in
frontpage, not the view on the web.