It is not the shopping cart page. I am replacing the URL in the site that leads to the shopping cart . I have upgraded carts so the url needs to point to the new cart..
Here is one section of code that I keep replacing the url in and then I upload to the server to test it and all images and background color disappear with the new url
<tr>
<td rowspan="5"><img name="base_r2_c1" src="images/base_r2_c1.gif" width="32" height="61" border="0"></td>
<td rowspan="3"><a href="main.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('main_home','','images/main_home_f2.gif',1);" ><img name="main_home" src="images/main_home.gif" width="101" height="35" border="0" alt="Home"></a></td>
<td><img name="base_r2_c3" src="images/base_r2_c3.gif" width="473" height="6" border="0"></td>
<td rowspan="4"><a href="http://www.coolcart.com/cgi-bin/shop/coolcart.exe/hotdiggity/shopping" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('main_viewcart','','imag es/main_viewcart_f2.gif',1);" ><img name="main_viewcart" src="images/main_viewcart.gif" width="121" height="36" border="0" alt="View Cart"></a></td>
<td rowspan="5"><img name="base_r2_c5" src="images/base_r2_c5.gif" width="33" height="61" border="0"></td>
<td><img src="images/spacer.gif" width="1" height="6" border="0"></td>
</tr>
<tr>
The only thing I do above is where you see this
href="http://www.coolcart.com/cgi-bin/shop/coolcart.exe/hotdiggity/shopping"
I just highlight and paste this where that is
href="http://www.coolcart.net/cart/CoolCart.aspx/hotdiggiycajun
When I do that the above code then looks like
<tr>
<td rowspan="5"><img name="base_r2_c1" src="images/base_r2_c1.gif" width="32" height="61" border="0"></td>
<td rowspan="3"><a href="main.htm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('main_home','','images/main_home_f2.gif',1);" ><img name="main_home" src="images/main_home.gif" width="101" height="35" border="0" alt="Home"></a></td>
<td><img name="base_r2_c3" src="images/base_r2_c3.gif" width="473" height="6" border="0"></td>
<td rowspan="4"><a
href="http://www.coolcart.net/cart/CoolCart.aspx/hotdiggiycajun" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('main_viewcart','','imag es/main_viewcart_f2.gif',1);" ><img name="main_viewcart" src="images/main_viewcart.gif" width="121" height="36" border="0" alt="View Cart"></a></td>
<td rowspan="5"><img name="base_r2_c5" src="images/base_r2_c5.gif" width="33" height="61" border="0"></td>
<td><img src="images/spacer.gif" width="1" height="6" border="0"></td>
</tr>
<tr>
and when tested all images and background color disappear.??