Adding wrapper divs for equal height columns.

This commit is contained in:
Samantha Doherty 2011-03-14 15:30:51 -04:00
parent eaef01233a
commit 4334bb7132
1 changed files with 6 additions and 0 deletions

View File

@ -681,6 +681,9 @@ class Action extends HTMLOutputter // lawsuit
function showCore()
{
$this->elementStart('div', array('id' => 'core'));
$this->elementStart('div', array('id' => 'aside_primary_wrapper'));
$this->elementStart('div', array('id' => 'content_wrapper'));
$this->elementStart('div', array('id' => 'site_nav_local_views_wrapper'));
if (Event::handle('StartShowLocalNavBlock', array($this))) {
$this->showLocalNavBlock();
Event::handle('EndShowLocalNavBlock', array($this));
@ -694,6 +697,9 @@ class Action extends HTMLOutputter // lawsuit
Event::handle('EndShowAside', array($this));
}
$this->elementEnd('div');
$this->elementEnd('div');
$this->elementEnd('div');
$this->elementEnd('div');
}
/**