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