If you need to output some DIV between question title H1 (.entry-title) and question body (.q-view) you can use an advanced theme*:
function q_view($q_view) {
$this->output('
<div class="adholder-top">
My custom content here
</div>
');
// call default method output
qa_html_theme_base::q_view($q_view);
}
That should do it.
*advanced theme: put the code in this file: qa-theme/yourtheme/qa-theme.php