well if you want to have a customization, here is what you could do
Edit bra_post_parts.php (it is in the atahualpa/functions folder) and change lines145-148 which are
HTML Code:
if ($do_full_post == 1) {
$bfa_ata_more_tag_final = str_replace("%post-title%", the_title('', '', false), $bfa_ata['more_tag']);
the_content($bfa_ata_more_tag_final);
} else {
to
HTML Code:
if ($do_full_post == 1) {
$bfa_ata_more_tag_final = str_replace("%post-title%", the_title('', '', false), $bfa_ata['more_tag']);
the_content($bfa_ata_more_tag_final);
if(has_post_thumbnail()): ?>
<a href="<?php the_permalink() ?>"> <?php the_post_thumbnail(); ?></a>
<?php endif;
} else {
and that should put the featured image as the first thing in each full post - if it exists
Remember to document what you are doing so you can reapply the patch in the future if you need to.