It would be a great improvement of your templates, if you would add the possibility to use the page class.
If I add such a page class to a menu link (Tab “Page Display”), it is not used.
By simply adding the following code it will work:
Open index.php inside of the template folder. After this code
defined('_JEXEC') or die;
JHtml::_('bootstrap.framework');
define( 'nexus', dirname(__FILE__) );
require("php/config.php");
require("php/variables.php");
add the following code:
$params = $app->getParams();
$pageclass = $params->get('pageclass_sfx');
And finally add the following code to the body tag:
class="<?php echo $pageclass; ?>"
It would be great if you could add this to your templates.
Regards
Patrick