RESOLVED
I want to set up a translucent div in the background of my blog so that the content will appear to "lay" on top of the translucent div that goes all the way from the top of the page to the bottom fo the page.
http://mfjram.com/wp/
heres the code I have
<div id="translucent">
</div>
before </body>
and my css is
#translucent {
width: 700px ;
height: 100% ;
background-color:#fff;
position:absolute;
top:0;
margin-left: auto ;
margin-right: auto ;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}
I want to set up a translucent div in the background of my blog so that the content will appear to "lay" on top of the translucent div that goes all the way from the top of the page to the bottom fo the page.
http://mfjram.com/wp/
heres the code I have
<div id="translucent">
</div>
before </body>
and my css is
#translucent {
width: 700px ;
height: 100% ;
background-color:#fff;
position:absolute;
top:0;
margin-left: auto ;
margin-right: auto ;
filter:alpha(opacity=60);
-moz-opacity: 0.6;
opacity: 0.6;
}