andrewjbea Hi
You can achieve that but it will affect all other modules which use the same module style.
Edit this file: root/templates/ja_vega/html/layouts/chromes/t4section.php
Look for the end of file:
if (!empty ($module->content)) {
$html = "<{$moduleTag} class=\"t4-mod-wrap {$moduleClassSfx} {$moduleClass} {$topSpace} {$bottomSpace}\" id=\"Mod{$module->id}\">" .
"<div class=\"section-inner\">" . $badge;
if ($module->showtitle != 0 || $modMain) {
$html .= "<div class=\"container\"><div class=\"section-title-wrap\"><div class=\"mod-title-wrap\">{$modTitle}{$modMain}</div></div></div>";
}
$html .= "<div class=\"section-ct\">{$module->content}</div>{$bottomDesc}{$moduleAction}</div></{$moduleTag}>";
echo $html;
}
change it to:
if (!empty ($module->content)) {
$html = "<{$moduleTag} class=\"t4-mod-wrap {$moduleClassSfx} {$moduleClass} {$topSpace} {$bottomSpace}\" id=\"Mod{$module->id}\">" .
"<div class=\"section-inner\">" . $badge;
if ($module->showtitle != 0 || $modMain) {
$html .= "<div class=\"container\"><div class=\"section-title-wrap\"><div class=\"mod-title-wrap\">{$modTitle}{$modMain}{$bottomDesc}</div></div></div>";
}
$html .= "<div class=\"section-ct\">{$module->content}</div>{$moduleAction}</div></{$moduleTag}>";
echo $html;
}