quote:
1) on the initial home page I have 2 pictures and they are not quite in line. I'm using a table so not sure why it's appearing as it does.
You have enclosed one picture in a paragraph, if you remove code for that, or enclose both in a para, they should be in line in all browsers.
<tr>
<td width="50%" height="223"><font face="trebuchet ms, Arial, Helvetica">
<p style="TEXT-ALIGN: center">
<a href="Lake%20Berkley%20Villa/index.htm">
<img border="0" src="IMGP0410.JPG" width="330" height="250"></a></font></td>
<td width="50%" height="223"><font face="trebuchet ms, Arial, Helvetica"> </font></td>
<td width="50%" height="223"><font face="trebuchet ms, Arial, Helvetica"><a href="Chatham%20Park%20Villa/index.htm">
<img border="0" src="pool.JPG" width="330" height="250"></a></font></td>
</tr>
quote:
2) On my contact details within each of the sub-webs I'm getting a line between the pictures and the text, again not sure why.
You have a strange mix of html and CSS trying to control the table and cell borders. For example this table:
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-width: 0" width="100%" id="AutoNumber5" height="89" bordercolordark="#666666" bordercolorlight="#999999">
<tr>
<td width="39%" style="border-style: none; border-width: medium" height="87">
<p align="center" style="margin-top: 0; margin-bottom: 0">
<img border="0" src="images/Contact/letter.gif" width="70" height="70"></td>
<td width="61%" style="border-style: none; border-width: medium" height="87">
<p style="margin-top: 0; margin-bottom: 0" align="center"><font face="Verdana" size="2"><span lang="en-gb">Write to us at: 49 Cavalry Park Drive, Duddingston, Edinburgh, EH15 3QG,
United Kingdom</span></font></td>
</tr>
</table>
Cleaned and tidied up, it could look like this:
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="39%">
<p align="center"><img border="0" src="images/Contact/letter.gif" width="70" height="70"></p>
</td>
<td width="61%">
<p style="margin: 0;" align="center"><font face="Verdana" size="2">Write
to us at: 49 Cavalry Park Drive, Duddingston, Edinburgh, EH15 3QG, United Kingdom</font></p>
</td>
</tr>
</table>