Sometimes there is a need to override page.tpl.php for specific content type. Like for articles it will be page--article.tpl.php etc.
For this, place this code in your theme's template.php file
<?phpfunction themeName_preprocess_page(&$vars, $hook) { if (isset($vars['node'])) { // If the node type is "product" the template suggestion will be "page--product.tpl.php". $vars['theme_hook_suggestions'][] = 'page__'. $vars['node']->type; }}?>