I'm trying to re design the free shop script. It uses smarty templates and I can't get my page to look right. It does when you just view it locally but when I upload it, it looks so different, background image doesn't show, logo image doesn't show, and shopping cart comes up as form fields?! This is my code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body bgcolor="#934900"> <a></a> <table align="center" width="900" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="20"></td> <td width="250"><img src="/images/logo.gif" width="250" height="150" /></td> <td width="25"> </td> <td align="right">{include file="language.tpl.html"} {include file="search_form.tpl.html"} <a href="index.php?search_with_change_category_ability=yes" class="lightsmall"></a></td> </tr> </table> <table width="900" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="120" height="30" align="center" class="nav"><div {if $main_content_template == "home.tpl.html"} class="topmenu_selected"{else} class="topmenu_notselected"{/if}><a href="index.php" class="menu">{$smarty.const.LINK_TO_HOMEPAGE}</a></div></td> <td width="120" align="center" class="nav"><div {if $main_content_template == "pricelist.tpl.html"} class="topmenu_selected"{else} class="topmenu_notselected"{/if}><a href="index.php?show_price=yes" class="menu">{$smarty.const.STRING_PRICELIST}</a></div></td> <td width="120" align="center" class="nav"><div {if ($main_content_template == "aux_page.tpl.html") && ($aux_page == "aux1")} class="topmenu_selected"{else} class="topmenu_notselected"{/if}><a href="index.php?aux_page=aux1" class="menu"><nobr>{$smarty.const.ADMIN_ABOUT_PAGE}</nobr></a></div></td> <td width="180" align="center" class="nav"><div {if ($main_content_template == "aux_page.tpl.html") && ($aux_page == "aux2")} class="topmenu_selected"{else} class="topmenu_notselected"{/if}><a href="index.php?aux_page=aux2" class="menu">{$smarty.const.ADMIN_SHIPPING_PAGE}</a></div></td> <td class="navbar"> </td> </tr> </table> <table width="900" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FED79C"> <tr valign="top"> <td width="20" height="100"> </td> <td><br /> {include file="$main_content_template"} </td> <td width="200"><br /> <table width="200" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="30" bgcolor="#6F3700"><a href="index.php?shopping_cart=yes" class="menu">{$smarty.const.CART_TITLE}</a></td> </tr> <tr> <td bgcolor="#934900">{include file="shopping_cart_info.tpl.html"}</td> </tr> </table> <br /> <table width="200" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="30" bgcolor="#6F3700"><a href="index.php#catalog" class="menu">{$smarty.const.ADMIN_CATALOG}</a></td> </tr> <tr> <td bgcolor="#934900">{include file="category_tree.tpl.html"}</td> </tr> </table> <p> </p></td> <td width="20"> </td> </tr> </table> </body> </html> Thanks for all help