Collapsible lists, appearance of..

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

One thing I really don't like about the collapsible lists (in FP2002) is
there is nothing to show that the list is expandable. I wish the cursor
would change to the pointing finger, as it does for hypertext links.

Apart from using a graphic at the top level(s) to indicate this, is there
any way I can change the behaviour of the cursor?

Thanks.
 
Use CSS -

li { cursor:pointer; cursor:hand; }

(the latter style is for IE, and the former is for the rest of the world)

This will style all list elements with the 'finger'.
 
Thanks Murray.
Where do I put this css code? I've got an external css for the site, but is
it possible to do this just for individual lists or individual pages?
 
Sure.

You could use -

ul.special li { cursor:pointer; cursor:hand; }

and it will only style lists that have that class assigned -

<ul>
<li> not me! </li>
</ul>
....
<ul class="special">
<li>eat your heart out!</li>
</ul>
 
Back
Top