I just used opacity for background of content but the text in this div (I mean the content div) gets opaque as well and I cannot see the text of this div clearly.
I want to have the container elements background to be opaque but not the text.
div#content{
    color:white;
    width:1150px;
    background_color:black;
    opacity:.65;
    margin:0 auto;
    filter:alpha(opacity=65);
}
 
     
     
    