I cant seem to get the cursor to be different than that stupid hand using CSS, I have tried:
A:Cursor: URL(link.cur)
A:Hover:Cursor: URL(link.cur)a { cursor: url("link.cur") }
The property cursor may have values of [ [<uri> ,]* [ auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize| text | wait | help ] ] | inheritThanks!Yes, but the quotes are unnecessary, correct?
Would
a { cursor: url(link.cur); }
work as well.From <!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/syndata.html#uri">http://www.w3.org/TR/REC-CSS2/syndata.html#uri</a><!-- m -->:
The format of a URI value is 'url(' followed by optional whitespace followed by an optional single quote (') or double quote (") character followed by the URI itself, followed by an optional single quote (') or double quote (") character followed by optional whitespace followed by ')'. The two quote characters must be the same.Aye, I thought so.I seem to remember though that you need them if you are going to include certain characters, so you may as well just use them.
A:Cursor: URL(link.cur)
A:Hover:Cursor: URL(link.cur)a { cursor: url("link.cur") }
The property cursor may have values of [ [<uri> ,]* [ auto | crosshair | default | pointer | move | e-resize | ne-resize | nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize| text | wait | help ] ] | inheritThanks!Yes, but the quotes are unnecessary, correct?
Would
a { cursor: url(link.cur); }
work as well.From <!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-CSS2/syndata.html#uri">http://www.w3.org/TR/REC-CSS2/syndata.html#uri</a><!-- m -->:
The format of a URI value is 'url(' followed by optional whitespace followed by an optional single quote (') or double quote (") character followed by the URI itself, followed by an optional single quote (') or double quote (") character followed by optional whitespace followed by ')'. The two quote characters must be the same.Aye, I thought so.I seem to remember though that you need them if you are going to include certain characters, so you may as well just use them.