I have the following CSS below which makes a button, but I would like to have the effect of transparency (and slightly see the background in the back). Please note that I don't wish to make it all transparent and totally invisible. Just a little bit...
I have tried messing around with the 'opacity' but that only blurs the image and distorts the color.
.i2Style {
font:bold 20px"Arial Black", Gadget, sans-serif;
font-style:normal;
color:#ffd324;
background:#158edb;
border:0px solid #4a3a00;
text-shadow:0px -1px 1px #222222;
box-shadow:0px 0px 12px #2e2300;
-moz-box-shadow:0px 0px 12px #2e2300;
-webkit-box-shadow:0px 0px 12px #2e2300;
border-radius:15px 15px 15px 15px;
-moz-border-radius:15px 15px 15px 15px;
-webkit-border-radius:15px 15px 15px 15px;
width:87px;
padding:20px 46px;
cursor:pointer;
margin:0 auto;
}
.i2Style:active {
cursor:pointer;
position:relative;
top:2px;
}