Yes. So select this code in qa-them-base.php:
function q_item_title($q_item)
{
$this->output(
'<div class="qa-q-item-title">',
'<a href="'.$q_item['url'].'">'.$q_item['title'].'</a>',
'</div>'
);
}
replace to:
function q_item_title($q_item)
{
$pid = $q_item['raw']['postid']; //question id
$query = qa_db_query_sub("SELECT postid, content, format FROM ^posts WHERE postid = $pid");
$cont = qa_db_read_one_assoc($query);
$blockwordspreg = qa_get_block_words_preg();
$text=qa_viewer_text($cont['content'], $cont['format'], array('blockwordspreg' => $blockwordspreg));
$text=qa_shorten_string_line(qa_html($text), 200); //200 is the length
$this->output(
'<div class="qa-q-item-title">',
'<a href="'.$q_item['url'].'">'.$q_item['title'].'</a>','<p class="your-class-for-text">',$text,'</p>',
'</div>'
);
}
But this is not perfect, because there isn't wrap in text. Example this example
Aaaaa
bbbb
ccccc ddd
will be this:
Aaaaa bbbb cccc ddd.
The webpage design is ok.