View Single Post
Old 03-01-2015, 12:05 AM   #2
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,421
Karma: 85400180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
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.

Last edited by eschwartz; 03-01-2015 at 12:09 AM.
eschwartz is offline   Reply With Quote