Skip to content

Instantly share code, notes, and snippets.

@anthonyringoet
anthonyringoet / template.php
Created September 21, 2012 10:29
drupal - remove div.panel-separator crap
function theme_panels_default_style_render_region($vars) {
$output = '';
$output .= implode('', $vars['panes']);
return $output;
}