I'm trying to code an HTML email newsletter by hand (using MailChimp). It's supposed to look similar to viastedebouw.nl/newsflash/2013-06/ which was created with an app (and therefore does not have very nice looking code).
The problem that I'm having is that one of the table cells has a width set in HTML and CSS, but it does not correspond to either. The code is:
HTML
<td width="140" class="logo">
CSS
.logo { width: 140px; height: 140px; }
However, what ends up happening is that the logo td is 614px wide, for some reason, as illustrated by this screenshot:
The full code for the email can be found here: https://gist.github.com/Flobin/5849501
Edit: I'm now realizing I got the entire table wrong in the first place, d'oh! Most rows have 1 cell, but some have 2. I forgot to add colspan="2"
to the cells that span the entire width of the table.