Collapsible lists, appearance of..

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

Murray

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'.
 
G

Guest

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

Murray

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top