With thanks to Dave at wickman studios below, here is a slightly revised patch, to make compatible with earlier versions and reduce the size of the URL input box – see lines around 367 onwards in sponsors-carousel.php
`
<?php _e(“New (select *full size* before insert): “, ‘sponsors-carousel’); ?>
<!– <input type=”text” name=”scwp_link_image” id=”scwp_link_image” size=”50″ value=”” style=”width: 80%” /> –>
<!– if input box is too wide, change width to max-width as in the next line, and comment out the original line, as shown here –>
<input type=”text” name=”scwp_link_image” id=”scwp_link_image” size=”50″ value=”” style=”max-width: 80%” />
<?php
if (get_bloginfo ( ‘version’ )>=”3.5″)
echo media_buttons(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’,$scwp_plugin_name); // for v3.5
else{ //for earlier WP versions
if (get_bloginfo ( ‘version’ )<“3.3”)
echo _media_button(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’);
else
echo _media_button(__(‘Add an Image’), ‘images/media-button-image.gif?ver=20100531’, ‘image’,$scwp_plugin_name);
}
?>
</div>