|
not a big html coder, but i used a css file with this :
.TableTrans{
BACKGROUND-color: #000000;
FONT-WEIGHT: bold;
FONT-SIZE: 14px;
COLOR: #ffffff;
FONT-FAMILY: sans-serif; TEXT-DECORATION: none;
filter: alpha(opacity=40); /* Used for IE opacity */
-moz-opacity: 0.40; /* used for mozilla opacity */
opacity: 0.5 /* used i think for opera opacity */
}
to make my tables translucent. and my text wasn't made translucent by it
<td class="TableTrans" width="100%" height= "100%" valign=top>
is how i accessed it. hope that helps
|