you can solve this problem within your theme. here's my sorting-solution:
function a_list_sort($a, $b) {
if ($a == $b) {
return 0;
} else if ($b['selected']) {
return 1;
}
return ($a['netvotes_raw'] > $b['netvotes_raw']) ? -1 : 1;
}
function a_list($a_list) {
if (!empty($a_list)) {
$this->section(@$a_list['title']);
$this->output('...');
uasort($a_list['as'],array($this, 'a_list_sort'));
foreach ($a_list['as'] as $a_item)
$this->a_list_item($a_item);
$this->output('</DIV> <!-- END qa-a-list -->', '');
}
}
if there is a "best answer", it shows on top.