I used Firebug to see where the transparency is set for the container background this is what I see
Code:
.container {
background: url(“images/bg.png”) repeat scroll 0 0 rgba(0, 0, 0, 0);
box-shadow: 0 0 25px -3px black;
position: relative;
}
when when I go to the file this is what I see
Code:
.container {
background: url(images/bg.png);
position: relative;
box-shadow: 0 0 25px -3px black;
}
how can I change the transparency on the container background?
http://fwmdev.com/painter/