views:

23

answers:

1

I have following CSS:

background-div:  url(/images/top.png) no-repeat top center;

and I am using the following filter for IE6: ( Transparent PNG Hack)

filter:progid:DXImageTransform.Microsoft.AlphaImageLoader
   (src='/images/top_arrow.png',sizingMethod='scale');

How can I add the background position (i.e. top center) to the filter?

+1  A: 

There are heavy restrictions on this method and you cannot add the background position.

Let me suggest trying out this method instead, it allows much more flexibility than the simple approach you're doing now. It's been engineered over the years and is the best fix I've encountered (and there are quite a few fixes out there.)

M2tM