简体   繁体   中英

Html email cell padding assistance

Need assistance adding padding to the main body text of this emailer so the text does not look quite so tight to the border.

It's probably a simple solution but I can't work out which table to add the cell padding property to.

live version -> http://garyrevell.co.uk/mercy2013/2013-temp/alt-april-mailer/index-purple-final.html

Pastebin of the code -> http://pastebin.com/PAbYgqXN

Help would be much appricated.

Always add padding the the table cell that the content is in. eg:

<td style="padding:30px;">
<singleline>your content</singleline>
</td>

It looks like your content however is living outside of tables in divs instead. You should lose the divs and put everything into td sections. Also, don't have a table next to text inside a parent td, instead have a table cell for each (use table rows if stacking them).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM