RE: [css-d] Opacity in Suckerfish -- stacking layers

2005-10-20 Thread Arno @ Raketnet
I posted this question in the stacking layers mail, but until now I haven't received a satisfying reply to that. Arno Have you (or anyone else) figured out why the menu disappears when your menu overlays a new element on the page? To see what I mean, go to his example. Hover over

Re: [css-d] Opacity in Suckerfish

2005-10-19 Thread Chester Bullock
Arno @ Raketnet wrote: Hi, I'm using a son of suckerfish dropdown and I want to use a transparent background. The testpage: http://www.poetryin-e-motion.com/test/index.html The CSS: http://www.poetryin-e-motion.com/test/scripts/sheet1.css Have you (or anyone else) figured out why the menu

Re: [css-d] Opacity in Suckerfish

2005-10-11 Thread Sam Partington
Problem is that if I do it like this, the text in the ul also has the opacity applied. That's not supposed to happen. Actually, that *is* supposed to happen. Opacity affects the entire element and all its children. Is there a way around that? I've tried specificity tricks and !important

Re: [css-d] Opacity in Suckerfish

2005-10-11 Thread Andrew Gregory
On Tue, 11 Oct 2005 21:14:26 +0800, Sam Partington [EMAIL PROTECTED] wrote: Problem is that if I do it like this, the text in the ul also has the opacity applied. That's not supposed to happen. Actually, that *is* supposed to happen. Opacity affects the entire element and all its

[css-d] Opacity in Suckerfish

2005-10-07 Thread Arno @ Raketnet
Hi, I'm using a son of suckerfish dropdown and I want to use a transparent background. Below is the snip of the css. #nav li ul { position: absolute; width: 130px; left: -999em; background-color: #fff; filter: alpha(opacity=40); opacity: 0.4; }

Re: [css-d] Opacity in Suckerfish

2005-10-07 Thread Andrew Gregory
On Sat, 08 Oct 2005 00:07:37 +0800, Arno @ Raketnet [EMAIL PROTECTED] wrote: #nav li ul { position: absolute; width: 130px; left: -999em; background-color: #fff; filter: alpha(opacity=40); opacity: 0.4; } Problem is that if I do it like this,

RE: [css-d] Opacity in Suckerfish

2005-10-07 Thread Sebastian Schimpf
I'm using a son of suckerfish dropdown and I want to use a transparent background. Problem is that if I do it like this, the text in the ul also has the opacity applied. That's not supposed to happen. How do I have to change it so that the text remains opacity 1.0/alpha=100?