Re: [WSG] CSS variable navigational menu`

2011-01-09 Thread Benjamin Hawkes-Lewis
On Sun, Jan 9, 2011 at 2:09 PM, Goku San gokus...@hotmail.com wrote: I have the following navigational menu bar. The menu has multiple parent menu items. [snip] What currently happens is when a user hovers over the Parent menu item, the child menu items appear below, horizontally, of

Re: [WSG] CSS variable navigational menu`

2011-01-09 Thread tee
On Jan 9, 2011, at 7:04 AM, Benjamin Hawkes-Lewis wrote: Make the parents the containing blocks for the absolute positioning of the children: #nav .sub { position: relative } http://reference.sitepoint.com/css/containingblock I hope you'll ensure that users who are not using a

RE: [WSG] CSS variable navigational menu`

2011-01-09 Thread Thierry Koblentz
These two essentially are the same. I am assuming the menu is controlled by a javascript, best practise is to use the absolute positioning to control submenu and use the toogle or mouseover to trigger the sub-level. I'm not sure this is considered best practice as keyboard users would have

Re: [WSG] CSS variable navigational menu`

2011-01-09 Thread tee
On Jan 9, 2011, at 10:24 AM, Thierry Koblentz wrote: These two essentially are the same. I am assuming the menu is controlled by a javascript, best practise is to use the absolute positioning to control submenu and use the toogle or mouseover to trigger the sub-level. I'm not sure this

RE: [WSG] CSS variable navigational menu`

2011-01-09 Thread Goku San
this functionality through the use of CSS. Anyway to make this possible? Thanks guys,Andy Subject: Re: [WSG] CSS variable navigational menu` From: weblis...@gmail.com Date: Sun, 9 Jan 2011 09:40:28 -0800 To: wsg@webstandardsgroup.org On Jan 9, 2011, at 7:04 AM, Benjamin Hawkes-Lewis wrote

Re: [WSG] CSS variable navigational menu`

2011-01-09 Thread tee
On Jan 9, 2011, at 11:42 AM, Goku San wrote: Hi, Thanks for your responses! I added the, #nav .sub {position: relative;}, removed the {display:none;} from my CSS file and from the ASPX page. Still not getting a solution. The #nav .sub {position: relative;} helped because it

Re: [WSG] CSS variable navigational menu`

2011-01-09 Thread David Hucklesby
On 1/9/11 10:24 AM, Thierry Koblentz wrote: These two essentially are the same. I am assuming the menu is controlled by a javascript, best practise is to use the absolute positioning to control submenu and use the toogle or mouseover to trigger the sub-level. I'm not sure this is considered