[css-d] Drop downs behind content

2010-04-30 Thread Shanna Cramer
On some versions of Win7/EI8 the drop down menu falls behind the content. I
have two (probably three) websites this is happening on. I have raised the
z-index to 9 and it still happens. This is something that I can¹t see.
The Win7/IE8 PC I have access to does not show this issue. Customers are
telling me about it.

The websites I have gotten complaints on are:
http://titanoutletstore.com/  - menu falls behind the video
http://www.valleyseniorservices.org/  - menu falls behind the content

Is this something I can fix? How?

-- 
Shanna Cramer
__
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] Drop downs behind content

2010-04-30 Thread Bill Braun


Shanna Cramer wrote:
 On some versions of Win7/EI8 the drop down menu falls behind the content. I
 have two (probably three) websites this is happening on. I have raised the
 z-index to 9 and it still happens. This is something that I can¹t see.
 The Win7/IE8 PC I have access to does not show this issue. Customers are
 telling me about it.

 The websites I have gotten complaints on are:
 http://titanoutletstore.com/  - menu falls behind the video
 http://www.valleyseniorservices.org/  - menu falls behind the content

 Is this something I can fix? How?
   

FF 3.5.9
XP, SP3

I can duplicate what you describe for titanoutletstore but not for 
valleyseniorservices. Related but different...on vallyseniorservices the 
menu for Sargent is chopped off on the right side by the body container.

Bill B


__
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] Drop downs behind content

2010-04-30 Thread David Laakso
Shanna Cramer wrote:
 On some versions of Win7/EI8 the drop down menu falls behind the content.
 http://titanoutletstore.com/  - menu falls behind the video
 http://www.valleyseniorservices.org/  - menu falls behind the content

 Is this something I can fix? How?

   



In the code for embedding flash, try changing the wmode to transparent?

~d

-- 
desktop
http://chelseacreekstudio.com/
mobile
http://chelseacreekstudio.mobi/

__
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] Drop downs behind content

2010-04-30 Thread Shanna Cramer
There is no flash. 


On 4/30/10 1:14 PM, David Laakso da...@chelseacreekstudio.com wrote:

 Shanna Cramer wrote:
 On some versions of Win7/EI8 the drop down menu falls behind the content.
 http://titanoutletstore.com/  - menu falls behind the video
 http://www.valleyseniorservices.org/  - menu falls behind the content
 
 Is this something I can fix? How?
 
   
 
 
 
 In the code for embedding flash, try changing the wmode to transparent?
 
 ~d

-- 
Shanna Cramer
Korby Imagery - Custom Web Solutions
http://korbyimagery.com
218 422 



__
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] Drop downs behind content

2010-04-30 Thread Climis, Tim
 There is no flash. 

Of course there is.  The Youtube video is flash.

Direct from your page:
 embed src=http://www.youtube.com/v/l26of6Qm9CUamp;hl=en_USamp;fs=1amp;; 
 type=application/x-shockwave-flash allowscriptaccess=always 
 allowfullscreen=true width=410 height=280

(Note the application/x-shockwave-flash part).

---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] Drop downs behind content

2010-04-30 Thread David Laakso
Shanna Cramer wrote:
 On some versions the drop down menu falls behind the content.


 http://www.valleyseniorservices.org/  - menu falls behind the content


   





Problem in IE/6 and IE/7 only.
Correction:

#navigation {
position: relative/*add*/;
 /*z-index: 100; delete*/
}
#page-nav li {
z-index: 10 /*add*/;
}

Best,
~d





-- 
desktop
http://chelseacreekstudio.com/
mobile
http://chelseacreekstudio.mobi/

__
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] Drop downs behind content

2010-04-30 Thread Shanna Cramer
On 4/30/10 1:34 PM, Climis, Tim tcli...@indiana.edu wrote:

 There is no flash.
 
 Of course there is.  The Youtube video is flash.
 
 Direct from your page:
 embed src=http://www.youtube.com/v/l26of6Qm9CUamp;hl=en_USamp;fs=1amp;;
 type=application/x-shockwave-flash allowscriptaccess=always
 allowfullscreen=true width=410 height=280
 
 (Note the application/x-shockwave-flash part).
 
 ---Tim

Color me red. Of course. Thanks for pointing that out. Updated.

So how about the other website? That one has no video, the drop downs are
falling behind white the content area. I was told by their IT person drop
downs were not working correctly in Win7/IE8. I made this change suggested
by David: 

Problem in IE/6 and IE/7 only.
Correction:

#navigation {
position: relative/*add*/;
 /*z-index: 100; delete*/
}
#page-nav li {
z-index: 10 /*add*/;
}

Thanks for checking. I just don't see it on my end at all. 


__
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] Drop downs behind content

2010-04-30 Thread David Laakso
Shanna Cramer wrote:

 So how about the other website? 


So, how about it?


 That one has no video,

That other one's uri is http://www.valleyseniorservices.org/

  the drop downs are
 falling behind white the content area. I was told by their IT person drop
 downs were not working correctly in Win7/IE8. I made this change suggested
 by David: 
   



The corrections made fix the specific problem you wrote about: namely, 
that the menu no longer is behind the content in IE/6 nor IE/7. That was 
never a problem in IE/8. There is an entirely different and unrelated 
issue for the menu in IE/8. Bill Braun alerted you to that issue at 
1:28p this afternoon. You may want to look into it when and if you have 
the chance.


~d





-- 
desktop
http://chelseacreekstudio.com/
mobile
http://chelseacreekstudio.mobi/

__
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/