Hi
When printing from Netscape 7.1, images which are referenced from CSS are printing out too small.
I have enclosed an html page containing 2 images. The images are the same, but one image is referenced by a css class, the other image in embedded directly into the page.
When this page is printed the image which is embedded in the html prints out at full size, whereas the other prints about 90% too small.
This is not a problem in IE or Opera.
You can download the image from:
Is there a reason why this is and how can i resolve it so that all images print at the correct size ?
Regards
----------------------------------
<html>
<head>
<title>Untitled Document</title>
<style>
.turntable {
background: url(turntable.jpg) left top no-repeat;
padding-right: 275px;
height:185px;
}
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0">
<tr>
<td class="turntable"> </td>
</tr>
</table>
<p><img src="turntable.jpg" width="275" height="185"></p>
</body>
</html>
When printing from Netscape 7.1, images which are referenced from CSS are printing out too small.
I have enclosed an html page containing 2 images. The images are the same, but one image is referenced by a css class, the other image in embedded directly into the page.
When this page is printed the image which is embedded in the html prints out at full size, whereas the other prints about 90% too small.
This is not a problem in IE or Opera.
You can download the image from:
Is there a reason why this is and how can i resolve it so that all images print at the correct size ?
Regards
----------------------------------
<html>
<head>
<title>Untitled Document</title>
<style>
.turntable {
background: url(turntable.jpg) left top no-repeat;
padding-right: 275px;
height:185px;
}
</style>
</head>
<body>
<table cellspacing="0" cellpadding="0">
<tr>
<td class="turntable"> </td>
</tr>
</table>
<p><img src="turntable.jpg" width="275" height="185"></p>
</body>
</html>