How about this..
Code:
<html>
<head>
<style type="text/css">
div.background
{
width: 500px;
height: 1000px;
background: url(klematis.jpg) repeat;
border: 2px solid black;
/* This will make the background image opacity =60*/
filter:alpha(opacity=60);
/* CSS3 standard */
opacity:0.6;
}
div.transbox
{
width: 400px;
height: 180px;
margin: 30px 50px;
background-color: #ffffff;
border: 1px solid black;
/* Edit the above for the forum/Fluid or fixed width*/
}
div.transbox p
{
margin: 30px 40px;
font-weight: bold;
color: #000000;
}
</style>
</head><body><div class="background">
<div class="transbox">
Forum code goes here ???
</div>
</div></body>
</html>
Its the best bit of code i've managed to fine, you may get a few clues on the coding part from it and your forums css.
ALWAYS, make a backup first :up: