How to make a new Drupal theme.
How to make a new drupal theme: Make a copy of core theme e.g. Garland, copy Garland direcotry and rename to it mytheme or as you wish. e.g. mytheme. Now we have /sites/all/mytheme/ with all the templates files. On this directory are important files, and that is the important part to make a new theme. Drupal theme files: .../sites/all/mytheme/ screenshot.png logo.png mytheme.info /css /images /color page.tpl.php node.tpl.php template.php maintenance-page.tpl.php comment.tpl.php theme-settings.php 1.screenshot.png: The screenshot should show the entire page and be about ~960x720 (4:3 ratio) resized to exactly 294x219 (~30% of the original size). Try to show many useful page elements (menu, tabs, title, links). Don't include browser chrome (toolbar, status bar, scrollbar, etc). A screenshot used for display purposes in the admin panel. 2.logo.png: Your logo, if you are using one. 3.mytheme.info: A required file that is new to Drupal 6 which provides inform...