View Full Version : Very Quick question on mouseovers


zed08
05-26-2006, 03:56 AM
The code provided on this site for mouseover occurs when the cursor is placed on a image that is linked.

What would the adjustments be to the code if I wanted a mouseover on an image but w/ NO LINKS?

zed08
05-26-2006, 06:08 AM
ANOTHER question:

I want to do a slideshow like the following on one of my pages:
http://www.javascriptkit.com/script/script2/rolldifferent.shtml

However, like the first question I had, is there any way that I can eliminate the linking part - how would the code differ?

I would appreciate if someone can help me with the above 2 questions stated again below:
1) image mouseover without links
2) image slideshow like the one on the site but without links

Arwen
05-26-2006, 01:16 PM
All you need is this CSS code:

<style type="text/css">
img {
cursor: crosshair;}
</style>

Change crosshair to whatever you want.