Forum Moderators: open
It was the doctype. I used a new extension to insert the doctype on one of the sites and when it dawned on me and I changed it to the old one..BAM.
This works:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
This doesn't:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
I wouldn't usually care about our favorite hemmoroidicus browsicus but with my luck it would be the first thing some Y? editor would run up into the site with.
I think this was touched on before briefly. Actually, they both if you only use the first part
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
or
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
It's the second line that NN6 doesn't like for some reason. I had this same problem with one of my sites.
Most pages have this on one line:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Some have this on two lines:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
I tried the one and two line thing to see if it made a difference in the different browsers and I have not see any.