Hi everyone, I've created an email signature that works fine in most email clients but there's a spacing problem that's occurring in Gmail. Gmail is adding extra space at the top of the two td cells that contain the address and phone numbers and also extra space at the bottom of the cell that contains the image. I've added !important; rules to my css to try and override Gmail's css, eg. <td width="160" valign="top" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; text-align:left; color:#666666; margin: 0 !important; padding: 0 !important;">Unit 5<br /> 2 Bligh Street<br /> Suburb NSW 2001 </td> ..but it's not working. I wondered if someone wouldn't mind taking a look at the code below to see why Gmail isn't removing the space? Appreciate any help. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Unititled</title> <meta http-equiv="Content-Type" content="text/html;"> </head> <body bgcolor="#ffffff" style="margin: 0; padding: 0;"> <!-- Start Table --> <table width="330" height="100%" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="margin: 0;"> <tr> <!-- Start Content --> <td colspan="2" align="left" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; line-height: 15px; color:#000; padding: 0; margin: 0;"><p style="margin: 0; padding: 0;">Yours sincerely,<br /><br /> <span style="font-weight:bold">Firstname Lastname </span> </p> <br /></td> <!-- End Content --> </tr> <tr> <td colspan="4" height="30" valign="middle" style="text-align:left; border-bottom: 1px solid #E5AF51; margin: 0; padding-bottom: 5px"><img src="logo.jpg" alt="Logo" width="160" height="30" /></td> </tr> <tr> <!-- Start Footer --> <td width="160" valign="top" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; text-align:left; color:#666666; margin: 0 !important; padding: 0 !important;">Unit 5<br /> 2 Bligh Street<br /> Suburb NSW 2001 </td> <td width="170" valign="top" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; text-align:left; color:#666666; margin: 0 !important; padding: 0 !important;"><span style="color: #000; font-weight:bold">T:</span> +61 2 9513 0000 <br /> <span style="color: #000; font-weight:bold">F:</span> +61 2 9513 0000 <br /> <span style="color: #000; font-weight:bold">W: </span><a href="http://www.newsite.com.au" style="text-decoration:none; color:#666666;">www.newsite.com.au</a></td> <!-- End Footer --> </tr> </table> </body> </html> Code (markup):