I can give you some steps on how to do this - and some tips that will help you with web development
- Download Firebug & install it.
- Right click on the image and select Inspect Element
- Look at the parent element of the img. Click on it and view the CSS in the right hand pane.
- Look for something like
background-color: #000
. Work out where it is being set. If it is not this element, repeat step 3, but look at the parent of what you were just looking at. - Open the CSS file that Firebug is telling you the CSS is located (possibly boxes.css, but it's been a while since I've used Magento) and modify the CSS property. If you want white, chuck in the value
#fff
. - Enjoy, and use Firebug to help you in other tricky spots!
Also, if Magento is a little crazy, it could be adding that background with GD, but I doubt it. If it is, you've got more work cut out for you!