Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
278 views
in Q2A Core by

The output html like below

1 Answer

0 votes
by

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);
}

by
Thanks very much
...