any way to set include page in netscape with no gap?

  • Thread starter Thread starter Catherine Jo Morgan
  • Start date Start date
C

Catherine Jo Morgan

How to get netscape to include a page footer without a gap between main
part? I thought adding the usual margin code would do it. It works for the
main page but not for the included content.

This isn't major, but it's annoying. (Right now if I could erase netscape
from the universe, I would.)
 
Also on this page in netscape, I don't know why the right hand column is
over so far to the left. I think I solved this in Netscape on some other
page (another draft really) but don't remember how. Maybe I can find the one
that works tomorrow.
 
Oh, I see. I was using the external style sheet to center the table and this
didn't work in Netscape 4.8. I edited it to center it in the regular html
code and now Netscape shows it better, although still not as well as IE6.
 
Validate your pages
You have 2 body tags (1 broken) in your main page and include page (delete the 1st one and the layer tag)
<body>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
<layer top="0" left="0" width="100%">
Should just be
<body leftmargin="0" rightmargin="0" bottommargin="0" topmargin="0" marginwidth="0" marginheight="0">


--



| Oh, I see. I was using the external style sheet to center the table and this
| didn't work in Netscape 4.8. I edited it to center it in the regular html
| code and now Netscape shows it better, although still not as well as IE6.
|
| | > Also on this page in netscape, I don't know why the right hand column is
| > over so far to the left. I think I solved this in Netscape on some other
| > page (another draft really) but don't remember how. Maybe I can find the
| one
| > that works tomorrow.
| >
| > | > > Where is the gap?
| > >
| > > --
| > >
| > > ==============================================
| > > Thomas A. Rowe (Microsoft MVP - FrontPage)
| > > WEBMASTER Resources(tm)
| > >
| > > FrontPage Resources, Forums, WebCircle,
| > > MS KB Quick Links, etc.
| > > ==============================================
| > > To assist you in getting the best answers for FrontPage support see:
| > > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > >
| > > | > > > Here's a page I'm working on:
| > > > http://www.cloud9coaching.com/percentage/start_gallery_07.htm
| > > >
| > > > | > > > > URL ?
| > > > >
| > > > > --
| > > > >
| > > > > ==============================================
| > > > > Thomas A. Rowe (Microsoft MVP - FrontPage)
| > > > > WEBMASTER Resources(tm)
| > > > >
| > > > > FrontPage Resources, Forums, WebCircle,
| > > > > MS KB Quick Links, etc.
| > > > > ==============================================
| > > > > To assist you in getting the best answers for FrontPage support see:
| > > > > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > > > >
| > > > > | > > > > > How to get netscape to include a page footer without a gap between
| > > main
| > > > > > part? I thought adding the usual margin code would do it. It works
| > for
| > > > the
| > > > > > main page but not for the included content.
| > > > > >
| > > > > > This isn't major, but it's annoying. (Right now if I could erase
| > > > netscape
| > > > > > from the universe, I would.)
| > > > > >
| > > > > >
| > > > >
| > > > >
| > > >
| > > >
| > >
| > >
| >
| >
|
|
 
Thanks. That fixed it and also nudged me to start using the validator from
the start.

Stefan B Rusynko said:
Validate your pages
You have 2 body tags (1 broken) in your main page and include page (delete the 1st one and the layer tag)
<body>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
<layer top="0" left="0" width="100%">
Should just be
<body leftmargin="0" rightmargin="0" bottommargin="0" topmargin="0"
marginwidth="0" marginheight="0">
 
Back
Top