To create a very basic custom template (you can build from there), you need:
- includes/languages/YOUR_TEMPLATE/english.php
- includes/languages/english/YOUR_TEMPLATE/index.php
- includes/languages/english/YOUR_TEMPLATE/header.php (to change the logo)
- includes/templates/YOUR_TEMPLATE/template_info.php
- includes/templates/YOUR_TEMPLATE/common/tpl_header.php
- includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
- includes/templates/YOUR_TEMPLATE/images/logo.gif
- includes/templates/YOUR_TEMPLATE/css/stylesheet.css
Anywhere you see a /classic/ folder, you can create a folder for your custom template. You can copy the necessary files from either the /classic/ folder, the /template_default/ folder or the parent folder.
Edit includes/templates/YOUR_TEMPLATE/template_info.php to give your template identifying information so you'll recognize it in the admin under tools->template selection.
As it says in the instructions, create the logo and upload it to includes/templates/YOUR_TEMPLATE/images/. With a good text editor (like Crimson Editor or Notepad), open includes/languages/english/YOUR_TEMPLATE/header.php and look for
Code:
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce [home link]');
define('HEADER_SALES_TEXT', '<h1>Sales Message Goes Here</h1>');
define('HEADER_LOGO_WIDTH', '200px');
define('HEADER_LOGO_HEIGHT', '70px');
define('HEADER_LOGO_IMAGE', 'logo.gif');
Change the lines in blue to match what you want it to say on your site (to remove the sales message completely replace it with two single quotes).
Change the lines in red to the dimensions of your logo and the name you gave the image you created and uploaded.
Once you create your own template and select it in the admin, the stuff about the book should disappear.
You can put your own background on your Zen Cart in the stylesheet.