I have a weird margin all the way around my theme when using at_panels_everywhere and don't know how to get rid of it. I have attached to images.

The first is a view where you can see the corner of the page with the gap highlighted by firebug in yellow. I was hovering over the "body" for firebug to give me that highlight.

The second shows that I don't have any margins/padding in my body (in fact I went in a deleted margins all over the place to try to get it to go away... nothing.

I do not have this issue if I use panany. The gray header is 100% width and works correctly in the panany theme so I am pretty sure it has to do w/ the theme and not some css/panels issue.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Jeff Burnz’s picture

Category: bug » support

The browser adds it, so content wont touch the chrome by default - you can zero it out by adding:

body {
  margin: 0;
  padding: 0;
}

I don't add this by default since its a starter theme and let the themer control what they want.

that0n3guy’s picture

Status: Active » Closed (fixed)

Sweet, that works. Why didn't I think of that :).