You can try this. It makes the background for the body container semi-transparent while all the other elements are opaque. It won't lighten your sidebar so I'm not sure if it'll get you where you want to go...
In your source files
In your "
header.php" right after "
<div id="container">" add:
Code:
<div class="transparency"></div><div class="content">
In "
footer.php" right after "
</table><!-- / layout -->" add:
Code:
</div><!-- / content -->
Within the ATA Admin Panel
In "
Style & Configure Layout" in the box "
Layout Container Style" add:
Code:
position: relative;
overflow: hidden;
In "
Add HTML/CSS Inserts" in the box "
CSS Inserts" add:
Code:
.transparency {
opacity:0.5;
filter:alpha(opacity=50);
-moz-opacity:0.5;
background-color:#ffffff;
width:1024px;
height:15000px;
position:absolute;
top:0px;
left:0px;
z-index:-1;
}
.content { position:relative; }
leave the "position & z-index" statements alone. You can configure the others to suit your needs.