[css-d] IE7 PNG Alpha Transparency...

2006-06-20 Thread Stephen Cunliffe
Hi all, I know that there are a number of hacks to make IE (7) behave with regards to the alpha transparency of PNG images, however I was wondering if any of them have a solution for PNG images, that are applied as background images, on elements/selectors other than the img. e.g. I know, that

Re: [css-d] IE7 PNG Alpha Transparency...

2006-06-20 Thread Christy Collins
On Jun 20, 2006, at 3:43 PM, Stephen Cunliffe wrote: but does anyone have a fix for this one? .foo { background-image: url(test.png); background-repeat: repeat-x; /* ? */ } E.g. the problem here, is that there is no width or height to play with... since a.) It repeats, and

Re: [css-d] IE7 PNG Alpha Transparency...

2006-06-20 Thread Christian Heilmann
I've set a repeating png background by putting this in an ie only stylesheet that's imported from a conditional comment: * html #text_box { background: none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=i/ opacity_bkg.png,sizingMethod=scale); } I found it with a google

Re: [css-d] IE7 PNG Alpha Transparency...

2006-06-20 Thread Christy Collins
On Jun 20, 2006, at 4:36 PM, Christian Heilmann wrote: I've set a repeating png background by putting this in an ie only stylesheet that's imported from a conditional comment: * html #text_box { background: none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=i/

Re: [css-d] IE7 PNG Alpha Transparency...

2006-06-20 Thread Mike Nowak
background: none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=i/ opacity_bkg.png,sizingMethod=scale); } I'm using the same in an attempt to create transparent drop-shadows and this works for the most part. I've seen it mentioned online that it should work in IE5.5 too,

Re: [css-d] IE7 PNG Alpha Transparency...

2006-06-20 Thread francky
Mike Nowak wrote: background: none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=i/ opacity_bkg.png,sizingMethod=scale); } I'm using the same in an attempt to create transparent drop-shadows and this works for the most part. [...] Hi Mike, If still attempting, maybe an