Re: [css-d] Drop-down and fly-out menu with transitions

2018-10-21 Thread Karl DeSaulniers
Bottom of the email. http://www.css-discuss.org/mailman/listinfo/css-d Best, Karl DeSaulniers Design Drumm http://designdrumm.com > On Oct 21, 2018, at 4:21 AM, Seb Frost wrote: > > How can I unsubscribe? > > On Tue, Oct 16, 2018 at 8:34 PM Karl DeSaulniers > wrote: > >> This is what I

Re: [css-d] Drop-down and fly-out menu with transitions

2018-10-21 Thread Seb Frost
How can I unsubscribe? On Tue, Oct 16, 2018 at 8:34 PM Karl DeSaulniers wrote: > This is what I have found and why I use classes. > The whole... > > .main_menu ul ul:first-child li ul li ul li { content: 'HELL NO' } > > ..Doesn't appeal like... > > .main_menu .second_tier .third_tier li { conten

Re: [css-d] Drop-down and fly-out menu with transitions

2018-10-16 Thread Karl DeSaulniers
This is what I have found and why I use classes. The whole... .main_menu ul ul:first-child li ul li ul li { content: 'HELL NO' } ..Doesn't appeal like... .main_menu .second_tier .third_tier li { content: 'Works for me' } :) Best, Karl DeSaulniers Design Drumm http://designdrumm.com > On O

Re: [css-d] Drop-down and fly-out menu with transitions

2018-10-16 Thread Tim Dawson
Thanks Georg, I'll take a look. I have finally managed to achieve my original objective by using direct child selectors all the way from the element, thus: 'nav > ul > li > ul ...' That prevents 'ul > li > ul' also selecting ' 'ul > li > ul > li > ul'. Without the 'nav' at the beginning to tell

Re: [css-d] Drop-down and fly-out menu with transitions

2018-10-15 Thread Georg
I have been trying to avoid using classes here, using direct child selectors instead. Maybe that's ill advised? It would appear that when I hover 'ul > li > ul' it's also selecting 'ul > li > ul > li > ul'. which I thought it should not. That's the only way I can account for both transitions

Re: [css-d] Drop-down and fly-out menu with transitions

2018-10-15 Thread Tim Dawson
Hello Karl, Thanks for your reply. I have been trying to avoid using classes here, using direct child selectors instead. Maybe that's ill advised? It would appear that when I hover 'ul > li > ul' it's also selecting 'ul > li > ul > li > ul'. which I thought it should not. That's the only way

Re: [css-d] Drop-down and fly-out menu with transitions

2018-10-15 Thread Karl DeSaulniers
Hi Tim, Have you tried duplicating the CSS declaration that works for the second tier and give it a different class name then apply that class to the third and remove the class name that's associated with the second? HTH, Best, Karl Sent from losPhone > On Oct 15, 2018, at 9:04 AM, Tim Dawson