Think I've managed it, not sure its the most elegant solution.
I noticed in featured_products.php this bit of code -
Code:
if ($num_products_count < SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS || SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS == 0) {
$col_width = floor(100/$num_products_count);
} else {
$col_width = floor(100/SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS);
Also a little later -
Code:
$list_box_contents[$row][$col] = array('params' =>'class="centerBoxContentsFeatured centeredContent"' . ' ' . 'style="width:' . $col_width . '%;"',
So now I know where my 33% is coming from, perhaps a setting I've not found in the Admin interface or a setting hidden and the Featured Products module was intended as 5 column only.
For now I've changed the variable to which works for me just now, if anyone knows better please let me know. Thanks. :)