Fix for Different body class for each page

  1. /*  In template.php:  */
  2.  
  3. function YOURTHEME_preprocess_page(&$vars) {
  4.   $vars['body_bg_class'] = arg(0);
  5. }
  6.  
  7. /* In page.tpl.php */
  8.  
  9. <body class="<?php print $body_bg_class; ?>">

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.