Re: [css-d] Problems with IE6

2010-03-30 Thread Joe Jackson
Thanks Guys

I have used

.globalnav {
   position: relative;
   z-index: 1;
}


however this is now putting the menu behing the main image on IE8 etc when
it was previously only occuring on IE6?

Anything else that I would need to do, does it need to go in an IE6 only
stylesheet?  If so what is the syntax required to achieve this
functionality.

Thanks
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Problems with IE6 - update

2010-03-30 Thread Joe Jackson
Hi

I have just tried the following which is working in IE8 but in IE6 the drop
down menu is still showing behind the main image?

/*end global nav*/
/* for IE5.5 and IE6 only */
 #globalnav {
   position: relative;
   z-index: 2;
}
.home-main-text-wrapper {
   z-index: 1;
}
/***
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Problems with IE6 - update

2010-03-30 Thread Joe Jackson
Sorry all, its working now

Thanks for all your help! much appreciated

On Tue, Mar 30, 2010 at 4:09 PM, Joe Jackson priory...@googlemail.comwrote:

 Hi

 I have just tried the following which is working in IE8 but in IE6 the drop
 down menu is still showing behind the main image?

 /*end global nav*/
 /* for IE5.5 and IE6 only */
  #globalnav {
position: relative;
z-index: 2;
 }
 .home-main-text-wrapper {
z-index: 1;
 }

 /***


__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Problems with IE6 - update

2010-03-30 Thread russ
So, what fixed it???

- Original Message - 
From: Joe Jackson priory...@googlemail.com
To: css-d@lists.css-discuss.org
Sent: Tuesday, March 30, 2010 8:19 AM
Subject: Re: [css-d] Problems with IE6 - update


 Sorry all, its working now
 
 Thanks for all your help! much appreciated
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Problems with IE6 - update

2010-03-30 Thread Joe Jackson
This is the code that fixed it

/*end global nav*/
/* for IE5.5 and IE6 only */
 #globalnav {
   position: relative;
   z-index: 2;
}
.home-main-text-wrapper {
   z-index: 1;
}
/***

On Tue, Mar 30, 2010 at 5:28 PM, r...@catjuggling.com wrote:

 So, what fixed it???

 - Original Message - From: Joe Jackson priory...@googlemail.com
 
 To: css-d@lists.css-discuss.org
 Sent: Tuesday, March 30, 2010 8:19 AM
 Subject: Re: [css-d] Problems with IE6 - update



 Sorry all, its working now

 Thanks for all your help! much appreciated


__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Problems with IE6

2010-03-29 Thread Joe Jackson
Hi

Does anybody have any solutions on how to get around the following problem
when viewing the following page in IE6

http://www.ian.thfctalk.com/ccosmetic/index.php

The dropdown menu displays behind the main images on the homepage?  On IE8,
Firefox, Chrome etc it works fine - it's just IE6 that is playing up.

Any ideas or hacks to get around this problem would me most appreciated
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Problems with IE6

2010-03-29 Thread Tim Snadden
On 30/03/2010, at 11:27 AM, Joe Jackson wrote:

 Hi

 Does anybody have any solutions on how to get around the following  
 problem
 when viewing the following page in IE6

 http://www.ian.thfctalk.com/ccosmetic/index.php

 The dropdown menu displays behind the main images on the homepage?   
 On IE8,
 Firefox, Chrome etc it works fine - it's just IE6 that is playing up.

 Any ideas or hacks to get around this problem would me most  
 appreciated

It's an IE z-index bug. One way of solving it would be...

#globalnav {
position: relative;
z-index: 2;
}

.home-main-text-wrapper {
z-index: 1;
}

This won't hurt any other browsers but I would put it in an IE  
stylesheet anyway with a comment as to what IE bug is being handled  
just to keep the IE nonsense separate.

Cheers, Tim

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Problems with IE6

2010-03-29 Thread David Hucklesby
On 3/29/10 6:54 PM, Tim Snadden wrote:
 On 30/03/2010, at 11:27 AM, Joe Jackson wrote:

 Hi

 Does anybody have any solutions on how to get around the following
 problem
 when viewing the following page in IE6

 http://www.ian.thfctalk.com/ccosmetic/index.php

 The dropdown menu displays behind the main images on the homepage?
 On IE8,
 Firefox, Chrome etc it works fine - it's just IE6 that is playing up.

 Any ideas or hacks to get around this problem would me most
 appreciated

 It's an IE z-index bug. One way of solving it would be...

 #globalnav {
   position: relative;
   z-index: 2;
 }

 .home-main-text-wrapper {
   z-index: 1;
 }

 This won't hurt any other browsers but I would put it in an IE
 stylesheet anyway with a comment as to what IE bug is being handled
 just to keep the IE nonsense separate.

 Cheers, Tim

Tim beat me to it. But this alone will do it:

.globalnav {
position: relative;
z-index: 1;
}

Cordially,
David
--

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Problems with IE6

2010-03-29 Thread Tim Snadden

On 30/03/2010, at 3:06 PM, David Hucklesby wrote:


 #globalnav {
  position: relative;
  z-index: 2;
 }


 Tim beat me to it. But this alone will do it:

 .globalnav {
position: relative;
z-index: 1;
 }

And I misidentified 'globalnav' as an id too. FWIW if something is  
only going to appear once (like global nav) I would make it an id  
rather than a class.

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/