I have a dynamically generated list that has potentially up to about 5 levels. I want the listed item text to underline when I hover over the listed item, however not the parent li.

see example.

http://jsfiddle.net/ca7fL/5/

you see when you hover on "this", the above parent li, underlines aswell.

Any ideas?

Cheers

link|improve this question

If you have an li with no children, should that underline when hovered over? – ipr101 Aug 25 '11 at 8:21
no that doesn't need to underline – AJFMEDIA Aug 25 '11 at 8:29
feedback

3 Answers

up vote 7 down vote accepted

That seems hard to achieve, since when you point the child li element you're also effectively pointing its parent.

There is a solution, though: add a span tag to your menu items, and make that tag hoverable: http://jsfiddle.net/ca7fL/16/

link|improve this answer
excellent idea! cheers – AJFMEDIA Aug 25 '11 at 8:34
feedback

Maybe you need to apply css classes to LI - Elements when geenerating them, so you can style them explicitly. CSS itself seems to be insufficient here.

link|improve this answer
feedback
ul li ul { padding-left:20px}
ul li ul li:hover { text-decoration:underline; curor:pointer;}
link|improve this answer
2  
This disables the effect for the top level li. I don't think that's what he wants. – Kokos Aug 25 '11 at 8:20
this one removes :hover-formatting from "ul li", which is also needed. – HBublitz Aug 25 '11 at 8:20
Also, it will not work as required if the list is nested on more levels (the OP mentions up to 5). – Jon Aug 25 '11 at 8:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.