Hi Sophb,
I am far from an expert (trying to style this plugin myself at the moment) but the following shortcode will let you style the font of the title:
title_class="lcp_title"
Then add the following to your custom CSS:
.lcp_title {
font-weight: bold;
font-size: 16px;
}
Hope that helps! As for getting the thumbnails to align to the left of the page, this might give you the look you are after:
.lcp_catlist img { float:left; margin:5px 10px 5px 0; }
.lcp_catlist li:after { content:'.';height:0px;visibility:hidden;display:block;clear:both; }
With this added to your shortcode:
class="lcp_catlist"
Ben