knowj
10-14-2008, 09:55 AM
I am currently using iepngfix.htc to apply the alpha transparency to a site. The problem is when I apply the fix to the background div containers it disables all the links and inputs ontop of them. I have tried using the code below to solve this but the transparent layer still seems to be put over the top making them completely unfunctional.
I currently have 2 options:
1: no transparency on the background images but usable links and inputs
2: transparency on all pngs but unusable links/inputs
I would ideally like to have a 3rd option where both can work together. I just need to find way to push the a, input through to the top z-index.
I would GREATLY appreciate any help with this as it seems to be a common problem with no working documented solution.
#left, #right, #product-detail{
position:relative;
z-index:0;
behavior:url(iepngfix.htc);
}
img{
behavior:url(iepngfix.htc);
}
a{
position:relative;
z-index:1000;
}
thanks in advance
I currently have 2 options:
1: no transparency on the background images but usable links and inputs
2: transparency on all pngs but unusable links/inputs
I would ideally like to have a 3rd option where both can work together. I just need to find way to push the a, input through to the top z-index.
I would GREATLY appreciate any help with this as it seems to be a common problem with no working documented solution.
#left, #right, #product-detail{
position:relative;
z-index:0;
behavior:url(iepngfix.htc);
}
img{
behavior:url(iepngfix.htc);
}
a{
position:relative;
z-index:1000;
}
thanks in advance