1. This points to a file that doesn't exist: (appears to likely be in your tpl_main_page.php):
2. And then this, while it's likely located in the right spot, still has an invalid path in it.Code:<script type="text/javascript" src="zencart/includes/templates/custom/images/scc_sales_banner.js"></script>
This part's fine:
But ... the contents of the jscript/scc_sales_banner.js file is now using a relative "zencart/includes/..." path. But, if you're going to hard-code the "zencart" part, you need to include the preceding slash, like this: "/zencart/includes/..."Code:<td class="plainBox"><script src="includes/templates/custom/jscript/scc_sales_banner.js"></script> <br /></td>



