Just thought I’d share the hacks as I got them so others looking here will find it.
To include the option to display your image at the top instead of just on left or right, go to lib.php, find the function definition for scu_s_area0, and add the line ‘1’ => ‘TOP’, as indicated below:
//PLACEMENT OPTIONS ---
function scu_s_area0() {
$sel = array(
'0' => 'HIDE',
'1' => 'TOP',
'2' => 'LEFT',
'3' => 'RIGHT'
);
scu_sel('area0', '', '', $sel);
scu_selpos('pos0');
}
This will include the option to place the image at the top of the item display in the drop menu in the admin screen.