See Preferences ==> User Stylesheet
Add some custom CSS to use whichever cursor you like, the dfferent cursors are described here:
http://www.w3schools.com/cssref/pr_class_cursor.asp
EDIT: This lets you try out the different pointer types:
http://www.w3schools.com/cssref/play...preval=pointer -- it also shows the code, but you want to use body NOT div.
Add the following:
Code:
body {
cursor: pointer;
}
to make the cursor
always look like the little pointing hand you get when you are mousing over a link.
Code:
body {
cursor: none;
}
will make the cursor invisible.
Etc.