I have this simple code in php:
<?php
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=kid_tag.doc");
echo '<table cellspacing="0" cellpadding="0" border="0" width="8.4cm">
<tr>
<td colspan="3" style="text-align: right; height: 0.6cm">Nursery</td>
</tr>
<tr>
<td style="height: 1.8cm"><img src="http://images.funadvice.com/photo/image/old/6943/tiny/cat.jpg" /></td>
<td style="text-align: center; font-weight: bold">Sofia Abello</td>
<td> </td>
</tr>
<tr>
<td style="text-align: left; height: 0.6cm">9AM Oct-12-08</td>
<td> </td>
<td style="text-align: right">Dance Studio</td>
</tr>
</table>';
?>
displays ok with MS Office Word, however, width is reduced (not proper width!) when opened with open office writer. any ideas?