I have this
$user =& JFactory::getUser();
$pageclass ="";
if(array_key_exists('Basic Spinervals Cycling Membership',$user->groups)) {
$pageclass .="basicMemberUsers";
}
if(array_key_exists('Download Club',$user->groups)) {
$pageclass .=" downloadClubUsers";
}
if(array_key_exists(' DVD of the Month Club',$user->groups)) {
$pageclass .=" MonthClubUsers";
}
if(array_key_exists('Registered',$user->groups)) {
$pageclass .=" RegisteredUsers";
}
In my head tag in my index.php
then I replaced body tag with this
<body class="<?php echo $this['config']->get('body_classes'); ?>">
but not working.