Hi Patrick,
thanks for the reply. Yes, I've narrowed it down a little bit more since. It appears the browser (IE 5.5 on Windows 2000) can't seem to see that font. The following page displayed the letter A using fantasy font (it ignored the contol font):
<html>
<head>
</head>
<body>
<FONT FACE="control, fantasy" size="9.5">A</font>
</body>
</html>.
I tried using a media=print style as follows but that too printed in the fantasy font when I printed the page out:
<html>
<head>
<style>
h1 {
font-size : 9.5pt;
font-family : fantasy;
}
</style>
<style media="print">
h1 {
font-size : 9.5pt;
font-family : control;
}
</style>
</head>
<body>
<h1>A</h1>
</body>
</html>
I've also since verified that text is indeed printed as text, not as an image as I originally thought.
Any other suggestions?