diff options
Diffstat (limited to 'html/functions.php3')
| -rw-r--r-- | html/functions.php3 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/html/functions.php3 b/html/functions.php3 index 48dc3757..3d215f4f 100644 --- a/html/functions.php3 +++ b/html/functions.php3 @@ -40,14 +40,17 @@ function pg_email() { } -/* Style sheet element for dt doesnt work in - Netscape, so hack it here. +/* Style sheet element for dt doesnt work in Netscape 4, so hack it here. + NB! This violates HTML 4 DTD. */ function dt($string) { print "<dt><div style=\"font-style:italic; font-weight: bold\">"; print $string; print "</div></dt>"; +/* Good version, okay in IE: + print "<dt>" . $string . "</dt>"; +*/ } /* Automatic footnotes? */ |
