Click to See Complete Forum and Search --> : Changed opacity on table bg color..


Nikonito
12-27-2005, 08:08 PM
Hi.

I've recently discovered the benefits with css, however, right now Im stuck with a newbie problem.

I have a table filled with a gray color and is also modified to be transparent..

.transparent {
opacity: .2;
filter: alpha(opacity=20);
}

The problem is, the table is acctually a space for a topic and when I place the headline text in that table, the text is also getting the alpha effect, which makes it unreadable..

I've tried to apply different tags to the text itself, and then applied another css trying to remove the alpha from the text but not from the table bg, without sucess.
Any good tips?


Sincerely N'nito

ray326
12-27-2005, 09:37 PM
link?

Nikonito
12-28-2005, 11:36 AM
yes,

http://www.eora.se/csserror.html

LJK
12-28-2005, 11:46 AM
Hi -
Yeah, any element that's set to have an alpha filter
will have children that inherit the same style...

I can only think to absolutely position an element that's
not a child of the one you've made transparent -
someone else may have a better idea!

El

Nikonito
12-28-2005, 08:18 PM
I really hope so :) Thank u anyway.