I'm trying to add content by views, and there is always a light gray separator between them. I'd like to get rid of them, but don't know how. I couldn't find a id or class via firebug on the page.

Thanks,
Steve

Comments

danpros’s picture

Hi,

If this is a table based then you can remove that in

tr td, tr th {
border:1px solid #bbb;
padding: 0 6px;
}

Dan

nfriend’s picture

I commented that code out of Style.css and still have the separator lines in the bottom of Panels. Any further tips? Not sure what the reference to "table based" means.

Using Drupal 7

Thanks

-Neil

nfriend’s picture

Turns out my lines were coming from Basic Pages I had in the Panels. I commented out top entry as shown in the following to clear them. (In style.css)

.node {
/* border-bottom: 1px solid #bbb; */
margin: 20px 0;
padding-bottom:15px;
}

Not sure where this will be missed on other areas but we'll see!

-Neil

Michsk’s picture

This is for panels 3 and D7, guess it works in D6 aswell.

Just drop this in your template.php file

function YOURTHEMENAME_panels_default_style_render_region($vars) {
  $output = implode($vars['panes']);
  return $output;
}