I don't know how this would work, but if you could put the relevant information into div, you could do this:
Code:
<div id="transbox">
<div>
The Rebel Soldier
<br>
by Anonymous
</div>
</div>
and the css:
Code:
/*thanks to Ove Klykken for the transparency code[http://www.domedia.org/oveklykken/css-transparency.php]*/
/* This is the transparent box */
#transbox {
width: 300px;
margin: 0 50px;
background-color: #fff;
border: 2px solid black;
filter: alpha(opacity=60);
opacity: 0.6;
-moz-opacity: 0.6;
}
/* This is the container which set text to solid color. position: relative used for IE */
#transbox div {
padding: 20px;
font-weight: bold;
color: #000;
filter: alpha(opacity=100);
opacity: 1;
-moz-opacity: 1;
position: relative;
}
a:link {
color: black;
text-decoration: none;
}
a:visited {
color: black;
text-decoration: none;
}
Make sure to check that link for more on opacity.
Bookmarks