to separate TITLE and CONTENT div classes. Replace entire foreach code with below modified one in @arjunsuresh's plugin layer.php.
foreach ($q_list['qs'] as $index => $question) {
if (isset($postinfo[$question['raw']['postid']])) {
$thispost = $postinfo[$question['raw']['postid']];
$text = qa_viewer_text($thispost['content'], $thispost['format']);
$text = htmlspecialchars(preg_replace('/\s+/', ' ', $text)); // Remove duplicated blanks, new line characters, tabs, etc
//$text = qa_shorten_string_line($text, $maxlength);
if($this->template =='blogs')
$title = $thispost['title'];
else $title = isset($question['title']) ? $question['title'] : '';
if(strlen($title) < $minlength){
$text = '<div class="q-content">'. qa_substr($text,0,$maxlength).'...</div>';
$q_list['qs'][$index]['title'] = $title;
$q_list['qs'][$index]['content'] = $text;
}
}
}