Hi mc12345678,
Thanks for the reply.
I've found the section I believe you were referring to in the main_template_vars.php:
PHP Code:
// create column list
$define_list = array(
'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME,
'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER,
'PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL, // I've moved this to here to display the model number on the right above the title
'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE,
'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY,
'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT,
'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE);
/* ,
'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW);
*/
asort($define_list);
reset($define_list);
However, no matter the order I seem to put the items in this list, I can only get the model to land in one of two positions on the listing page. It'll either be where previously described (on the left above the product image) or it'll display on the right above the product title.

Are there any further points I'm missing?
Thanks again for your help this far.