So, I have several position background images in place and a background color and the images have a transparent edge, and I'm wondering if I can eradicate the background color from where the images are transparent.
I currently get this Image.
And would like to get something like this Image.
P.S. Sorry for just posting images as links, but at the time of this posting I wasn't allowed to actually post images.
Web Page: desertednoir.uhostfull.com
Relevant Code:
#content {
padding: 1.5%;
float: left;
width: 73%;
text-align: center;
z-index: 1;
color: Silver;
border: 1px solid black;
background: url("/images/e_bl.png") no-repeat left bottom,
url("/images/e_tr.png") no-repeat right top,
url("/images/e_tc.png") no-repeat center top,
url("/images/e_br.png") no-repeat right bottom,
#3C3C3C;
}
<div id="content">Content Stuff</div>