<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
to
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> (which is correct)
breaks the simple centering and fixed width fix with CSS which I know many, many, people are using.
I was thinking of solutions for this and there are a couple but it would seem that the most logical fix would be to move all of this...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> <body>into the header and the corresponding ending code on every page...
</body> </html>into the footer.
That's the way that most sites are coded but I'm sure there's some reason, historical or otherwise that it's not that way. I'm sure this question has been raised before over the years but I guess I'll ask it again.
I don't want to deviate very much from what will be coming as the base version in the next release since that will make my life more complicated.
Answers from anyone?










