Is there a way to decrease the transparency of the page contents container background without affecting the opacity of the actual content?
<div id="container">
<div id="page contents">
Insert your amazing articles and more here.
</div>
</div>
The container needs to be able to expand with the content, so a fixed height won't work.
Absolute positioning below the content would create no relationship between the two divs and prevent it from expanding with the content. Using jQuery is not an option as it may cause lag, so other solutions are preferred.
We could resort to using 'png' background images, but that limits the ability to change colors easily based on different color schemes in the template.
Generating images when needed is a possibility, but not the most ideal solution.
Unfortunately, CSS3 cannot be used due to compatibility issues with Internet Explorer. Any suggestions for this dilemma?