QUOTE(bookmark @ Oct 5 2004, 05:47 PM)
Make the image address relative.
For example, instead of
http://www.mysite.com/images/picture.jpg, it should be /images/picture.jpg
[right][snapback]52265[/snapback][/right]
Actually, even that image will not show up in checkout correctly -
CODE
/images/picture.jpg
This is because the leading /slash/ leads the browser to believe that it should look in the root directory, which, if you are using shared SSL, is not the root directory of your secure checkout. To make the image appear in checkout, use this -
CODE
images/picture.jpg
Although in HTML, they are both technically 'relative' the proper method is the second one. I hope that helps!