add this to qa-theme.php inside the class:
function body_content()
{
$this->body_prefix();
$this->notices();
$this->output('<DIV CLASS="qa-body-wrapper">', '');
$this->widgets('full', 'top');
$this->header();
$this->widgets('full', 'high');
//$this->sidepanel();
$this->main();
$this->widgets('full', 'low');
$this->footer();
$this->widgets('full', 'bottom');
$this->output('</DIV> <!-- END body-wrapper -->');
$this->body_suffix();
}
having // before the function wont let it be executed.