You can set an archive page (ATO->Create ARCHIVES PAGE->Archives Page ID but you will have to edit the theme code to get the list in ascending order
edit bfa_post_parts.php (version 3.7.15) and change line 190 from
HTML Code:
<?php wp_get_archives('type=' . $bfa_ata['archives_date_type'] . '&show_post_count=' .
to
HTML Code:
<?php wp_get_archives('order=ASC&type=' . $bfa_ata['archives_date_type'] . '&show_post_count=' .
make sure to keep good notes because you will have to change this code each time there is a theme upgrade.
This will only give you the year, month, week or post title depending on what options you choose.