html - outlook 2007 not displaying image button in email -
i creating html email uses image buttons
<input type="image" src="images/right_nav1.bmp" width="200" height="37" name="right_nav1" style="border:0; padding:0; margin:0; display:block;" /> <input type="image" src="images/right_nav2.bmp" width="200" height="37" name="right_nav2" style="border:0; padding:0; margin:0; display:block;" /> <input type="image" src="images/right_nav3.bmp" width="200" height="37" name="right_nav3" style="border:0; padding:0; margin:0; display:block;" /> <input type="image" src="images/right_nav4.bmp" width="200" height="37" name="right_nav4" style="border:0; padding:0; margin:0; display:block;" />
the images not getting displayed. there work around displaying image buttons?
two things:
you need use absolute paths. e-mail has no connection web site , paths.
<img src="http://.....">
don't use bmp images, support going spotty. use jpg, gif or png images instead.
Comments
Post a Comment