You will need to fix your HTML code to prevent this from happening. For instance, your header has this -
CODE
<table height="117" cellspacing="0" cellpadding="0" border="0" background="http://www.christianbooksbibles.com/website/header/head_bck.jpg" align="center" width="1003">
- and it should be this -
CODE
<table height="117" cellspacing="0" cellpadding="0" border="0" background="website/header/head_bck.jpg" align="center" width="1003">
You should note that if the browser asks you if you want to display the non-secure stuff and you click NO, that these images are not shown. You are referencing them absolutely.
Here's an old FAQ on the subject.
http://kb.monstercommerce.com/support/acti...66&catId=12And here's a newer FAQ on the same subject.
http://customersupport.networksolutions.co...icle.php?id=767EDIT: And here's a spot on the forums where it was mentioned previously. It's actually a pretty common call we get in technical support.
http://forums.networksolutions.com/coding-...tems-t1902.htmlI hope this helps.