As I have written before, You cant remove it from only one element.
If You want to strip entire site from this class, You can edit:
templates/creativity/html/modules.php
- Code: Select all
if($module->showtitle) {
if($params->get('module_link_switch')) {
echo '<h'.$header_type.' class="header'.($onepage ? ' gkPage' : '').'"><a href="'. $params->get('module_link') .'">'. preg_replace('/__(.*?)__/i', '<small>${1}</small>', $module->title) .'</a></h'.$header_type.'>';
} else {
echo '<h'.$header_type.' class="header'.($onepage ? ' gkPage' : '').'">'. preg_replace('/__(.*?)__/i', '<small>${1}</small>', $module->title) .'</h'.$header_type.'>';
}
}
which adds gkPage to h1 elements of Joomla modules, and:
- Code: Select all
if($clear_mode == false) echo '<div class="content'.($onepage ? ' gkPage' : '').'">';
that adds gkPage to content of module if current page has class/suffix onepage.