Edit the file qa-theme.php of the theme you're using and override the method q_view_content():
public function q_view_content($q_view) {
$this->output('<h1>');
$this->output($q_view['title']);
$this->output('</h1>');
parent::q_view_content($q_view);
}