CSS and Mail
kenyabob (303 pencils) | Sun, 2005-04-03 17:57I am making a mailer using HTML and CSS. I embedded the stylesheet in the html, and that solved a lot. However, one line of code isnt quite working.
background-image: url('http://www.titanav.com/ticket/ticket.gif);
For some reason, I cant make this line work. Because the HTML will be thrown into an email, the CSS link has to be an external link the image on the server, yet it isnt working! Emails are displaying the image. Any ideas?
Commenting on this Forum topic is closed.
you only have one ", try adding that to the end aswell...it also works fine without quotes at all, but I'm sure using one isn't a good thing.
====================
Jeff Yamada
Web Designer/Developer
www.hyperkulture.com
jeff@hyperkulture.com
aim: hyperkulture
====================
try this:
background-image: url(http://www.titanav.com/ticket/ticket.gif);