"Behavior" link that needs a "finger" not a pointer

W

wallster

Hard to explain this in the subject line but I have a piece of code
that was written with fp using behaviors feature.
On rollover it changes images (jpg) on rollout it chages back, on
click it goes to a link. The problem is it uses a pointer for a cursor
instead of a finger. How do I fix it??

code:
<img border="0" src="whiteportfolio.jpg" width="271" height="42"
onclick="FP_goToURL(/*href*/'http://thewebsitelink.com/htm')"
id="img1" onmouseover="FP_swapImg(1,0,/*id*/'img1',/
*url*/'redportfolio.jpg')" onmouseout="FP_swapImgRestore()"
vspace="5">

i changed the link site to protect the innocent... Thanks

Walt
 
W

wallster

Figured out my own stupid question! Thought I would share the solution
in case anyone has the same brain-fart. In behaviors, just do
onmouseover and then onmouseout to change the jpeg image then back to
the original. Next, highlite the jpeg and set as a hyperlink. The code
will look like this:

<a target="_self" href="http://thewebsitelink.com/htm">
<img border="0" src="whiteportfolio.jpg" width="271" height="42"
id="img1" onmouseover="FP_swapImg(1,0,/*id*/'img1',/
*url*/'redportfolio.jpg')" onmouseout="FP_swapImgRestore()"
vspace="5"></a>

walt
 

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