1. Edit file qa-theme/Donut-theme/qa-donut-layer.php
2. Add this function to the class:
public function head_title() {
if (qa_request() === '') {
$firstPart = $this->content['site_title'];
$secondPart = 'This is the best website come check us out!';
} else {
$firstPart = strip_tags(@$this->content['title']);
$secondPart = $this->content['site_title'];
}
$this->output(sprintf('<title>%s - %s</title>', $firstPart, $secondPart));
}