Image won't display in the right place in Gmail

Expoman

New Member
My HTML mail displays correctly in Mac Mail and also in Gmail when not send using Max Bulk Mailer. Whenever it is sent in MBM, the picture moves to the centre as per the attached screenshot.

The coding in the area of the image is as follows:

<html>
<head>
<STYLE type=text/css>
body, td, a{
font-family : Arial, Helvetica, Geneva, sans-serif;
font-size : 12pt;
color:#000000;
line-height:20px;
}
</style>
</head>
<body>

<table cellpadding="0" cellspacing="0" border="0" width="409" align="center">
<tr>
<td style="padding:0px 0px 5px 0px" align="center"><font style="font-family:arial;font-size:11px;line-height:16px" color="#333333">Can't see the images? <a href="#" target="_blank" style="color:#0000ff; font-weight:bold; font-size:11px;">Try the browser friendly version</a></font></td>
</tr>
</table>
<!--main body-->
<table cellpadding="0" cellspacing="0" border="0" width="600" align="center" bgcolor="#FFFFFF">
<tr>

<br /> <b></b><center><img src="http://www.ukroadrepairshow.co.uk/images/UK-Roads-SmallerWeb-Logo.gif"
<td style="padding:5px;" align="center" bgcolor="#CCCCCC"><span style="font-size:45px; font-weight:bold; color:#868686; line-height:45px;">
</tr>
<tr>
<td style="padding:5px;" bgcolor="#CCCCCC"><div<font style="font-size:20px; font-family:arial; line-height:22px" color="#0000000"><b><center>February 22 & 23, 2012 Ricoh Arena, Coventry</b></font></div></td>


</tr>

Any help would be great fully received.

All best,
Steven
 

stanbusk

Administrator
Staff member
Your code says:

<table cellpadding="0" cellspacing="0" border="0" width="409" align="center">

try:

<table cellpadding="0" cellspacing="0" border="0" width="409">
 
Top