Drupal remove the panels separator

By default, in between all your panel panes you'll have a <div class="panel-separator"></div>. To get rid of it or change it, implement theme_panels_default_style_render_region() like below:
<?php
/**
 * Implements theme_panels_default_style_render_region().
 * 
 * Removes the panels separator.
 */
function YOURTHEME_panels_default_style_render_region($vars) {
  $output = '';
  $output .= implode('', $vars['panes']);
  return $output;
}
?>
Another option for controlling markup for panels is to use the Panels Extra Styles module, although I'm not sure if it can remove the separators or not.

Tags

Internal References

Article Type

General