Quote:
Originally Posted by ADAM Web Design
I've never tried this, but this CSS pseudo-class may work instead:
Code:
img:hover {
cursor: hand;
}
|
try "pointer" instead
(and without :hover, so it works also in older browsers)
Code:
img {
cursor: pointer;
}
(or with javascript of course)
Last edited by bas; 08-08-2007 at 12:05 PM..
Reason: forgetting al kind of things
|