I just found this in simple-portfolio.php works a treat, it was there right under my nose.
<?php simple_portfolio_query_projects(null, null, array( ‘orderby’ => ‘title’, ‘order’ => ‘ASC’, ‘posts_per_page’ => ‘1’ )); ?>
* <?php while (have_posts()) : the_post(); ?>
* <h1><?php echo the_title(); ?></h1>
* <?php the_content(‘Read more »’); ?>
* <?php endwhile; ?>