Bobbo171
12-21-2009, 10:26 PM
hey, I'm working on the following site
http://beforethestores.com/newbts/
What im worried about is the product links are sowing up behind the image and other stuff...I'll explain
I have .productsite that contains all the elements that format the image, name, price, etc. The only CSS I have for that is setting the z-index low
.productsite{
z-index:100;
}
and then I have .productlink which is the link that I want over the entire product box, it has the following CSS to make it block, absolute so its out of the flow, and a high z-index to put it in front of everything else
.view-products .view-content .views-row .productlink{
display:block;
position:absolute;
top:0;
left:0;
height:100%;
width:100%;
z-index: 1000;
}
This shows up how I would like it to in some browsers, but in IE6,7,8 and Opera (all the browsers I have tested in other than FF, Safari, and Chrome) the link is behind all the other elements and prevents clicking. Any ideas what could be up. I had a similar problem before, and I thought it was because of invalid HTML, but I fixed all that and its pretty much the same. Any help is appreciated. Thanks!
http://beforethestores.com/newbts/
What im worried about is the product links are sowing up behind the image and other stuff...I'll explain
I have .productsite that contains all the elements that format the image, name, price, etc. The only CSS I have for that is setting the z-index low
.productsite{
z-index:100;
}
and then I have .productlink which is the link that I want over the entire product box, it has the following CSS to make it block, absolute so its out of the flow, and a high z-index to put it in front of everything else
.view-products .view-content .views-row .productlink{
display:block;
position:absolute;
top:0;
left:0;
height:100%;
width:100%;
z-index: 1000;
}
This shows up how I would like it to in some browsers, but in IE6,7,8 and Opera (all the browsers I have tested in other than FF, Safari, and Chrome) the link is behind all the other elements and prevents clicking. Any ideas what could be up. I had a similar problem before, and I thought it was because of invalid HTML, but I fixed all that and its pretty much the same. Any help is appreciated. Thanks!