First of, Netscape is obsolete and hasn't been developed on for years.
Skip it and use Firefox, IE and perhaps Opera.
See inline
Hi Murray,
I understand now that it's a good idea to check the site's layout first with
FF and then with IE.
Before publishing, however, my site looked okay in Netscape. (I did not
preview it in FF; added FF to the browser list for previewing just now.) It
was only after publishing that I noticed that the headers and footers of some
columns are not displayed properly.
Isn't this a real weak point of FrontPage that you have to publish a site
first before you can be sure that the layout is all right?
If you have anything added serverside then you must Publish to see how
that affects the page. Otherwise previewing in a browser locally will
be fine. FPs builtin preview will NOT be enough.
I am groping completely in the dark with the term "hack!"
What is a "hack?" How do I “add hacks?”
A "hack" is a workaround for things that don't work the same. You just
type the necessary code to use it.
If you have a specific problem just post it and someone will post a
"hack" you can use to solve it.
I followed your suggestion to validate my site with validator.w3.org.
The validation failed, and it lists 13 errors.
Now, I don't know what I am looking at.
I don’t know what this means, “unable to determine Parse Mode” and “No
doctype found.”
Doctypes are explained if you read on, on the error page.
I guess that all the errors listed refer to the home page.
Four of the errors refer to the marquee of the home page, and I am sure that
I can fix them.
marquee is a IE specific tag so to fix it you would need to remove it.
As for the others, I even don’t know where to find them. I can see the line
# in code view, but not the column #.
Look at the status bar to see the cursors current location.
I don’t know if it is too much to ask you to look at it and help me to
interpret the results of this validation.
Here again the URL:
www.developserenity.com
And would fixing these errors ensure that FF and Netscape render my layout
correctly?
No, Netscape is much too old now to guarantee that.
The errors listed by line numbers.
1. Read what is said about doctypes on the error page.
19. Type is required it is clearly written in the error how you should
write it.
51. You have used height but that is illegal. Use CSS instead.
In the header you delare this class:
<style type="text/css">.tableStyle1 {
height: 647px;
}
And you change the line:
<table border="0" cellpadding="0" cellspacing="0" width="1055"
height="647">
To:
<table class=tableStyle1 border="0" cellpadding="0" cellspacing="0"
width="1055">
You can also change the other attributes to CSS.
76. FP-Style, FP-Title is inserted by FP there is nothing you can do
about this.
107. Marque and any attributes to it are invalid.
146. FP specific. It is anyway not a good idea to try and tamper with
the statusbar text and most modern browsers will disallow it, so
remove it.
325, 332. Images must have an alt attribute. You set this in
properties for the image.
Regards Jens Peter Karlsen.