i dont use 7. just because you think people probably dont use a certain browser is no excuse not to have cross browser portability.
http://www.twinhelix.com/css/iepngfix/here. i use this all the time. download the zip archive on that page.
since it's on myspace, you'll need to do the following:
Upload blank.gif to a webserver.
Open iepngfix.htc in notepad.
Find this:
QUOTE
// This must be a path to a blank image. That's all the configuration you need.
if (typeof blankImg == 'undefined') var blankImg = 'blank.gif';
change "blank.gif" to "http://yoururlhere.com/blank.gif" (wherever you uploaded blank.gif to).
Save iepngfix.htc and upload it to a server.
Put this in your myspace css:
CODE
<style type="text/css">
img {
behavior: url("http://yoururlhere.com/pngbehavior.htc");
}
</style>
replace yoururlhere.com with wherever you uploaded the file.
That SHOULD work.