Here is a workaround. But can anyone confirm this is the right approach ?
In qa-theme.php, I overwrote page_title_error() as
function page_title_error()
{
$favorite=@$this->content['favorite'];
if (isset($favorite))
$this->output('<FORM '.$favorite['form_tags'].'>');
if ($_SERVER['QUERY_STRING'] == '')
$this->output('<H1 class="qa-main-header">');
else
$this->output('<H1>');
$this->favorite();
$this->title();
$this->output('</H1>');
if (isset($this->content['error']))
$this->error(@$this->content['error']);
if (isset($favorite))
$this->output('</FORM>');
}
Then set display:none to the qa-main-header. This works. But will this affect any thing else ???
Thanks