0

I've called background images in my html newsletter and these images are not showing up in my outlook and in gmail also:

Code:

<td style="font-family: calibri;font-size:16px;color:#000;font-weight:bold;padding-left:4px;border-top:1px solid #039AE0;border-bottom:1px solid #039AE0;border-left:1px solid #039AE0;border-right:1px solid #039AE0;border-radius:25px;background: url('http://mysite/newsletter/images/truy.jpg') repeat-x;text-align:center;" height="40" >3900 AED</td>
Cœur
  • 37,241
  • 25
  • 195
  • 267

2 Answers2

1

Using background images is not supported by most email clients. There is very limited use of CSS when it comes to emails.

There is some information here as to how you can get around it - http://blog.mailchimp.com/background-images-and-css-in-html-email/

haxtbh
  • 3,467
  • 1
  • 21
  • 22
  • i am calling background image for a TD with repeat x;not able to find a cleat cut solution for these issue..read lot of forums – user3273870 Apr 24 '14 at 09:25
  • Do as mentioned in the link I gave. Dont use CSS, use the `` `background=""`. You can do `background-repeat: repeat-x` in the style which may work on some email platforms. – haxtbh Apr 24 '14 at 09:38
0

Background images do work across major email clients. The difficulty, as you've discovered is with Outlook. Outlook only supports background images in either the body tag or by using VML. See this similar answer:

Background images not working in Outlook 2007 and later

Community
  • 1
  • 1
John
  • 11,985
  • 3
  • 45
  • 60