here is the first error i noticed:
HTML Code:
<table background="file:///C:/Users/Jeff%20Wellman/AppData/Local/Temp/Temp1_templates.zip/chunk-templates/Blue%20Website/images/website-table-bg.jpg" border="0" cellpadding="0" cellspacing="0" width="710">
the imaged is linked locally, it should be something more like:
HTML Code:
<table background="../images/website-table-bg.jpg" border="0" cellpadding="0" cellspacing="0" width="710">
Same problem with the links further down the page:
HTML Code:
<img style="border: 0px solid ; width: 500px; height: 280px;" alt="meeandcathy" src="../../../../Desktop/168610_185975678102902_100000714134620_542848_1983427_n.jpg">
if you replace the above code with:
HTML Code:
<img style="border: 0px solid ; width: 500px; height: 280px;" alt="meeandcathy" src="../168610_185975678102902_100000714134620_542848_1983427_n.jpg">
it will work.