MyBB Community Forums

Full Version: Translucent container
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
it is possible to do it with css3 with no images, but I don't think it works in some browsers. heres the code anyways:

background-color: rgb(0,0,255);
opacity: 0.5;

put that in the css block for the container and mess with the rgb colours to get what you are looking for
Well if you are gonna use css3 use it right.

opacity: 0.5;
moz-opacity: 0.5;
webkit-opacity: 0.5;
o-opacity: 0.5;


There is a filter for IE aswell.
In photoshop, make a 1x1 sized image, and fill it with black. Now lower the opacity of it to about 33%.

Then in your theme for container, on the background do:

url(images/theme/image.png) repeat

Thanks how I do it.
Pages: 1 2