Forum Moderators: not2easy
You might try the following code for the links:
a:hover, a:active {
cursor: pointer;
cursor: hand;
}
Having two cursor declarations is for cross-browser compatibility and they must be in the order specified above.
Don't know if this will help you or not, but it's worth a try.
Line: 0 Context : a:hover , a:active
Invalid number : cursor: hand is not a cursor value : hand
Unfortunately that
cursor:hand; is not valid CSS. I've been there done that when I first started playing with all the different cursor values. What are the links contained in? Are they in
<li>, <div>, <p> etc...?
#side {position: absolute; }
/* hide form ie (win and mac) \*/
*>#side {position: fixed; }
/* end hide */
There's more info here:
[macedition.com...]
Adam
Unfortunately that cursor:hand; is not valid CSS. I've been there done that when I first started playing with all the different cursor values.
Right, it's IE-only. However, I've used it occasionally when I've had to do so. I've never seen it break anything else, so I don't mind so much if it's not valid (though I don't use it much, either).