mozilla

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

when i view my site with mozilla there is a large vacant space at the top...

i believe everything else in the site is somewhat relative from browser to
browser, etc.

any suggestions?

many thanks...

www.kelleygreens.com
 
Your page is missing the <HTML> tag at the top and should also have a valid
DOCTYPE on it. Switch to Code View and add:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">


as the first 2 lines of the code. Then see how it looks.
 
thank you.

i entered the code but there is still space at the top that does not exist
with explorer...?

sph
 
Change

<body leftmargin="50" rightmargin="50" marginwidth="100"
marginheight="100" topmargin="0">

to

<body style="margin:0 50px;">

This give 50px left and right margins, with no top margin.

Marginheight="100" will give a 100px top margin in Netscape and FireFox
browsers.
Marginwidth="100" will give a 100px left and right margins in Netscape
and FireFox browsers.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 
HOME RUN!

many thanks...

sph

Ronx said:
Change

<body leftmargin="50" rightmargin="50" marginwidth="100"
marginheight="100" topmargin="0">

to

<body style="margin:0 50px;">

This give 50px left and right margins, with no top margin.

Marginheight="100" will give a 100px top margin in Netscape and FireFox
browsers.
Marginwidth="100" will give a 100px left and right margins in Netscape
and FireFox browsers.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 
Back
Top