Go back

For Tansparent text put this into the header of your page.
To add or change the background color, text, font basically any text attributes just use web studio as usual.

Get the id number of the text object you want to make transparent and past it in instead of TXTOBJ7D625188353E70 notice the last # has no comma.
So if you had only one text object it would look like this:
# TXTOBJ7D6251881272030
and if it was 3 it would look like this with comma's at the ends except the last one:
# TXTOBJ7D6251881272030 ,
# TXTOBJ7D6251881272030 ,
#
TXTOBJ7D6251881272030


<style type="text/css">
/* This is the transparent text */
# TXTOBJ7D6251881272030 ,
# TXTOBJ7D625188353E70
{
border: 2px solid #fdbe02;
filter:alpha(opacity=25);
opacity: 0.25;
-moz-opacity:0.25;

}
</style>
border: 2px solid #fdbe02;
This is the border code around the text, if you don't want a border just remove it , if you want to change the look go to the border & image page they are the same as text borders.
filter:alpha(opacity=25);
opacity: 0.25;
-moz-opacity:0.25;
This is the transparency code. The lower the number the more transparent the text so if you wanted the text to be more opaque you go like this:
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.5;
Images css borders