z-index

Permalink
Hi,
what i have use in css instead of z-index for the slider.
Main thing is that, i have use the slider transparency and for that i have use the z-index to manage but whn i apply the slider addon then transparency not work. Any sugesstion
thanks

phpsoftsol
 
notzen replied on at Permalink Reply
notzen
Hi,

not sure about what you looking for but regarding transparency you can use this code in order to have a background transparent but not the content inside.

hope could be of some help

.alpha60 {
/* Fallback for web browsers that doesn't support RGBa */
background: rgb(0, 0, 0) transparent;
/* RGBa with 0.6 opacity */
background: rgba(0, 0, 0, 0.6);
/* For IE 5.5 - 7*/
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
/* For IE 8*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}