Issue
Is it possible to change the color of the mouse pointer, so it matches the theme of your web site?
Solution
Not the color. You can create your own cursor image though, and apply it in css with the cursor
property:
body {
cursor: url(myCursor.cur);
}
This page is relevant.
Answered By – Eric
Answer Checked By – Clifford M. (BugsFixing Volunteer)