Re: [css-d] CSS Dropdowns and Form Select Boxes

2007-05-17 Thread Stephen Cunliffe
Classic case of the IE6 Select z-index bug. You have 4 choices. 1.) Ensure that a select box will never be in a position below your overlay content 2.) When "opening" your overlay, change the display of all select elements to none 3.) Generate an iframe, to reside under your overlay (same dims)

[css-d] CSS Dropdowns and Form Select Boxes

2007-05-17 Thread Ian Vaughan
I have a CSS drop down and it all works fine apart from one major point. When you roll over a menu option and the drop down appears, it is shown underneath a Form select box on my page ? It displays as it should - over the top of a form input box, but not a select box. Any ideas on how to get

Re: [css-d] CSS dropdowns fail in IE6, N7 for PC

2006-11-23 Thread Ingo Chao
[EMAIL PROTECTED] wrote: > ... >> >> The page in question is at http://northminpres.org/beta.html and all >> CSS for the nav menus is inline. > > Update: I've made no progress on this, although I did notice and > correct a few validation errors in my CSS. I've also seen it in > Netscape 7, whe

[css-d] CSS dropdowns fail in IE6, N7 for PC

2006-11-23 Thread phidlerwerf
On Nov 19, 2006, at 10:52pm, [EMAIL PROTECTED] wrote: > I've got a test page with dropdown menus based on the "son of > Suckerfish" approach from > http://www.htmldog.com/articles/suckerfish/dropdowns/ > > With help from my fave local CSS guru, they now work nicely on Mac > browsers Firefox, Safar

Re: [css-d] CSS Dropdowns

2005-11-23 Thread David Laakso
Richard Brown wrote: >Hi All > >I am still working on this site: > >The css is located at: > > >I am trying to implement a CSS Dropdown menu using the technique listed >here: >

RE: [css-d] css dropdowns and forms

2005-08-18 Thread Jon Jensen
I suppose there is one more option I forgot: 4. Use javascript to hide select controls (visibility:hidden) when the suckerfish menu is active. Jon __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-

RE: [css-d] css dropdowns and forms

2005-08-18 Thread Jon Jensen
There is no pure CSS way to do this, but you do have options: 1. Position an empty iframe behind your suckerfish dropdown http://dotnetjunkies.com/WebLog/jking/archive/2003/07/21/488.aspx 2. Use DHTML selects http://www.icant.co.uk/forreview/tamingselect/ 3. Move your form/selects away from the

[css-d] css dropdowns and forms

2005-08-18 Thread Justin Reid
Hello all, I'm sure this has come up before so I'm hoping someone can help. I'm using dropdown navigation (suckerfish) and noticed that they hide behind form elements in IE. What is the best solution to this problem? Thanks -Justin __