I noticed on my Panels admin page that the content is going outside of the 'content-inner' div.
Also a display issue is the closure at the bottom of the page when there is not enough content to make the page scroll.

This happens on a completely stock install of the theme. This happens on Chrome and Firefox (that I've tested, I'm sure it's a problem elsewhere).

Attached is a screen shot about what I'm talking about.
Any suggestions?

Comments

Cletus’s picture

StatusFileSize
new275.17 KB
new332.06 KB

Forgot to attach

Cletus’s picture

It seems I have fixed the issue without any drawbacks (as of yet).

page.tpl.php line 82:

<div id="content-inner">

CHANGE TO:

<div id="content-inner" class="clear-block">

It seems like clear-block should be on this, but it wasn't.

As for the closure, I don't think that is solvable--at least with very little content like in the screenshots on comment #1. Adding a block into the closure, be it just text, will add a small gap even if there is plenty of content on the page.
css/blogbuzz.css line 309:

#closure {
  color: #B5B4AA;
  height: 40px;
  background-color: #171615;
}

CHANGE TO:

#closure {
  color: #B5B4AA;
  height: 40px;
  background-color: #171615;
  overflow: hidden;
}

The drawback to adding "overflow: hidden;" to the closure is that anything larger than 40px will be clipped, but I think that shouldn't be a problem for most people.

Of course, please test further on your end before putting this on a production site.