Created
September 21, 2012 10:29
-
-
Save anthonyringoet/3760811 to your computer and use it in GitHub Desktop.
drupal - remove div.panel-separator crap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function theme_panels_default_style_render_region($vars) { | |
$output = ''; | |
$output .= implode('', $vars['panes']); | |
return $output; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!