Re: [css-d] Z-index and IE

2008-10-08 Thread Big John
Denise McLaurin wrote: > I'm experiencing a problem with a left-hand menu that > uses css to hide/display submenu items on a particular > page which gives certain content items a z-index setting. > The problem is corrected in Firefox by adding a higher z-index to the submenu s. However, this doe

[css-d] Z-index and IE

2008-10-08 Thread Denise McLaurin
I'm experiencing a problem with a left-hand menu that uses css to hide/display submenu items on a particular page which gives certain content items a z-index setting. The problem is corrected in Firefox by adding a higher z-index to the submenu s. However, this does not work in IE. If someon

Re: [css-d] z-index and IE 6 - overlapping elements

2006-05-02 Thread Bostjan Kern
> > Using your example, I cut out as many of the positioned elements as > possible. For example you have the following structure for your > gallery : > > div.album <-- float:left and position:relative >a.albumLink

Re: [css-d] z-index and IE 6 - overlapping elements

2006-05-02 Thread Sam Partington
On 02/05/06, Bostjan Kern <[EMAIL PROTECTED]> wrote: (snipped my first attempt at a fix) > I tried the above solution, but the bottom element is still overlapping > the top and > > Any other ideas folks? Hmm odd! I don't know what is causing this behaviour. But before I posted my earlier r

Re: [css-d] z-index and IE 6 - overlapping elements

2006-05-02 Thread Bostjan Kern
> > I shoud imagine its these two rules that is causing a bit of ambiguity : > > .album * > { > position: absolute; > z-index: 0; > } > > .albumSub > { > z-index: 100; > position: absolute; > /* other stuff */ > } > > I am guessing that the first rule is given a higher specificity, > however acco

Re: [css-d] z-index and IE 6 - overlapping elements

2006-05-02 Thread Sam Partington
I shoud imagine its these two rules that is causing a bit of ambiguity : .album * { position: absolute; z-index: 0; } .albumSub { z-index: 100; position: absolute; /* other stuff */ } I am guessing that the first rule is given a higher specificity, however according to [1] the * should not

[css-d] z-index and IE 6 - overlapping elements

2006-05-02 Thread Bostjan Kern
Hi! URL: http://neovizija.com/emanuel/ Problem: The element with z-index: 0; is overlapping the element with z-index: 100. It works fine in Safari, Firefox and Opera though. Any ideas how to *fix* this? Cheers, Bostjan :) __ c

Re: [css-d] z-index and IE

2006-03-10 Thread Ingo Chao
Julie Angarone wrote: > http://www.being-a-mom.com/ > > In Firefox the blocks and block headings are exactly the way I want > themnot in IE Z-index doesn't seem to help at all. #areas h1 {position:relative} This should help placing the h1 ov

Re: [css-d] z-index and IE-NEVERMIND

2006-03-09 Thread Julie Angarone
Z-index only works with positioned objectsThanks Eric Meyer p.231 in More Eric Meyer on CSS! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Julie Angarone Sent: Thursday, March 09, 2006 10:30 AM To: 'css discuss' Subject: [css-d] z-in

[css-d] z-index and IE

2006-03-09 Thread Julie Angarone
http://www.being-a-mom.com/ In Firefox the blocks and block headings are exactly the way I want themnot in IE Z-index doesn't seem to help at all. Any ideas? Thanks! __ css-dis