Well, I can see what is happening. Where ever the problem is, it is resulting in an incomplete path to the image. Here is the source for the Latest Products box from your site, and frommy site - obtained from Firefox's View Source feature.
Mine looks like this.
Code:
<!-- whats_new //-->
<tr>
<td>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td height="14" class="infoBoxHeading"><img src="templates/Original/images/infobox/corner_right_left.gif" border="0" alt="" width="11" height="14"></td>
<td width="100%" height="14" class="infoBoxHeading"><font color="#FFFFFF">Latest products</font></td>
<td height="14" class="infoBoxHeading" nowrap><a href="http://www.casualfridaysgiftshop.com/catalog/products_new.php"><img src="templates/Original/images/infobox/arrow_right.gif" border="0" alt="more" title=" more " width="18" height="15"></a><img src="images/pixel_trans.gif" border="0" alt="" width="11" height="14"></td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
<tr>
<td><table border="0" width="100%" cellspacing="0" cellpadding="3" class="infoBoxContents">
<tr>
<td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
</tr>
<tr>
<td align="center" class="boxText"><a href="http://www.casualfridaysgiftshop.com/catalog/product_info.php?products_id=5560"><img src="images/maxam/imagesSPTEL_400px_72dpi.jpg" border="0" alt="SPTEL_BULK ~ BULK LOT of 8 units" title=" SPTEL_BULK ~ BULK LOT of 8 units "></a><br><a href="http://www.casualfridaysgiftshop.com/catalog/product_info.php?products_id=5560">SPTEL_BULK ~ BULK LOT of 8 units</a><br>$631.60</td>
</tr>
<tr>
<td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="1"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- whats_new_eof //-->
Yours looks like this..
Code:
<!-- whats_new //-->
<tr>
<td>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td height="14" class="infoBoxHeading"><img src="images/infobox/corner_right_left.gif" border="0" alt=" " title=" " width="11" height="14"></td>
<td width="100%" height="14" class="infoBoxHeading"><font color="#ffffff">Latest products</font></td>
<td height="14" class="infoBoxHeading" nowrap><a href="http://sk8.worldconspiracy.org/products_new.php?osCsid=168ff66b923d904273b52863be93d170"><img src="images/infobox/arrow_right.gif" border="0" alt=" more " title=" more " width="12" height="10"></a><img src="images/pixel_trans.gif" border="0" alt=" " title=" " width="11" height="14"></td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
<tr>
<td><table border="0" width="100%" cellspacing="0" cellpadding="3" class="infoBoxContents">
<tr>
<td><img src="images/pixel_trans.gif" border="0" alt=" " title=" " width="100%" height="1"></td>
</tr>
<tr>
<td align="center" class="boxText"><a href="http://sk8.worldconspiracy.org/product_info.php?products_id=843&osCsid=168ff66b923d904273b52863be93d170"><img src="images/" border="0" alt=" Ellington " title=" Ellington "></a><br><a href="http://sk8.worldconspiracy.org/product_info.php?products_id=843&osCsid=168ff66b923d904273b52863be93d170">Ellington</a><br>$86.99</td>
</tr>
<tr>
<td><img src="images/pixel_trans.gif" border="0" alt=" " title=" " width="100%" height="1"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!-- whats_new_eof //-->
The key is in these two lines :
Yours :
Code:
<td align="center" class="boxText"><a href="http://sk8.worldconspiracy.org/product_info.php?products_id=843&osCsid=168ff66b923d904273b52863be93d170"><img src="images/" border="0" alt=" Ellington " title=" Ellington "></a><br><a href="http://sk8.worldconspiracy.org/product_info.php?products_id=843&osCsid=168ff66b923d904273b52863be93d170">Ellington</a><br>$86.99</td>
Mine :
Code:
<td align="center" class="boxText"><a href="http://www.casualfridaysgiftshop.com/catalog/product_info.php?products_id=5560"><img src="images/maxam/imagesSPTEL_400px_72dpi.jpg" border="0" alt="SPTEL_BULK ~ BULK LOT of 8 units" title=" SPTEL_BULK ~ BULK LOT of 8 units "></a><br><a href="http://www.casualfridaysgiftshop.com/catalog/product_info.php?products_id=5560">SPTEL_BULK ~ BULK LOT of 8 units</a><br>$631.60</td>
The upshot is, your image path is truncated at "images/" where mine is complete. So, what we need is to look at the code that forms the path in the existing module, and make the code in the new module form a path from the same variables.
More in next message.
David