Is there a way to make a div image transparent while the text in the div is not. here is my current code.
.body {
width: 800px;
height: auto;
font-family: Arial;
font-size: 11px;
color: #000;
background: url('Images/backg3.png');
opacity: 0.5;
alpha(opacity=50);
}
.textbody {
padding: 10px;
color: #000000;
font-weight: bold;
filter:alpha(opacity=100);
}
.textbody h1 {
float: left;
}
.textbody p{
font-size: 15px;
}
.textbody img{
padding: 5px;
}
Thanks for any help.