To make the cells translucent

larme d'ange at 12h41
20
Dec
2005
Before starting to read this tutorial, I advise you to read this one, on the css files:

/viewtopic.forum?t=135

----------------

To make the cells translucent :

First you should have to put colors in the 'Table Row 1, 2 and 3':

Admin panel >> Styles Admin >> Colors >> Table Row Colour 1, 2 and 3


After, or you directly put your CSS on the Admin panel/ Site description,
or you already have a CSS file link to your board, and you just have to add this code to it.

Each navigator uses a differente attribute, so you'll have to put all of them to be sure than your visitors or members will see the same effect:

Opera Arrow opacity: .*
Modzilla Arrow -moz-opacity: .*
Internet Explorer Arrow filter: alpha(opacity=**)

Now is just need to write your CSS for the cells:

Code:
td.row1, td.row2, td.row3, td.row3Right { opacity: .8;
                            filter: alpha(opacity=80);
                                    -moz-opacity: .8;}


Here 8 and 80 corresponds to an opacity of 80%

So, if we directly put it on the admin panel:

Admin panel >> General Admin >> Configuration >> Site description

Code:
<style type="text/css">td.row1, td.row2, td.row3, td.row3Right { opacity: .8; filter: alpha(opacity=80); -moz-opacity: .8;}</style>


Warning, make sur that all the script is put, if it's not, you'll have a bug of display with your board.
It's possible to correct this bug, but you will have to ask for on the support forum.

You also have the possibilty to add this to your CSS file if you have one.
Just include it on :
Code:
td.row1, td.row2, td.row3, td.row3Right { opacity: .8;
                            filter: alpha(opacity=80);
                                    -moz-opacity: .8;}



that's all folks
1 Cornelia, on 16/06/2006 at 05h16
If you want to have your cells translucent, but you have already other codes in the site desctiption, or if you feel really uneasy in using CSS, you can use SanDream's Script Generator to gather several codes in one script : /viewtopic.forum?t=317
Similar topics
Need a logo for my forum that is translucent. I allready have the logo, but can someone delete it's background. Here it is: Tnx in advance.
How to make text bigger on the templates? Click Spoiler Spoiler: I already use Code: <font size="6">text</font> But i can't be bigger
We have a Rant thread (which is a very good idea, and I shall be visiting it very soon!) so I thought we could have a Smile thread. A little thing that has made me smile today is hearing my little boy Joe, who is 7, singing along to 'Forget Myself' eve
Replies 1 to 1 on 1 for "To make the cells translucent"
See also
more_less
Informations

1 Replies For the topic :
"To make the cells translucent"

This topic has been viewed 10584 times.

Last message :
20/12/2005 at 12h41 by "larme d'ange"