the-rock-online.net showing up badly in firefox

  • Thread starter Thread starter nateda
  • Start date Start date
N

nateda

Hi, I have a website, the-rock-online.net, that I create with frontpage
2002. The whole site looks wonderful in IE, but for some reason, the
"Matrix.htm" page looks terrible in firefox. I was wondering if someone
could go on and check out what I am doing wrong.
Thanks!
Nate
(e-mail address removed)
 
Your main frame page has no doctype, and the one in
http://nateda.googlepages.com/matrix.htm is incorrect.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

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

Also, in the style section for http://nateda.googlepages.com/matrix.htm you
have an error:

h1, h2, h3, h4 {
color: #333; font-family: Arial, Helvetica, sans-serif;

h1

}

should be:

h1, h2, h3, h4 {
color: #333; font-family: Arial, Helvetica, sans-serif;
}


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Steve said:
Your main frame page has no doctype, and the one in
http://nateda.googlepages.com/matrix.htm is incorrect.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

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

Also, in the style section for http://nateda.googlepages.com/matrix.htm you
have an error:

h1, h2, h3, h4 {
color: #333; font-family: Arial, Helvetica, sans-serif;

h1

}

should be:

h1, h2, h3, h4 {
color: #333; font-family: Arial, Helvetica, sans-serif;
}


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
.......................with a computer

Okay, I tried this, and for some reason, on Macintosh, Matrix.htm is
nothing but gray. I can't figure out what I'm doing wrong in the layout.
 
Back
Top