Spawn

  • Thread starter Thread starter Bob N.
  • Start date Start date
Jim:

The only problem with that feature is unless you are a coding genious like
youself and others here how does one figure out how to have the hand when
the cursor goes over the link as well as a tool tip? I'm sticking with
Spawn.

--
Have Fun Bill

RealDraw Cafe
http://realdrawcafe.com
MicrosoftGraphics Users Group
http://microsoftgraphics.com
 
Hi Bill,
haven't used this behaviour so I might be misunderstanding the question -
but in general to get a hand you'd do
<style type="text/css">
..someClass{
cursor:hand;
cursor:pointer;
}
</style>
<p class="someClass" title="some interesting text">a hand cursor and a
title</p>
you have to use hand and pointer for cross browser support - but they both
do the same thing - hand==pointer. It's better to put the behaviour on an <a
href tho - this way you get NN4 support
 
Back
Top