Is it posibble to change, default cursor on my website?

Hello. I just saw that on techprobex.com, they have a custom cursor on their site. I was wondering how do i edit default cursors on my site? Maybe @Admin, you know it!

I saw this site and here, has no custom cursor. But you can get it if html code, just search on internet.

Hello. This can be done with CSS. I found the instruction only in Russian (translation of the site in English) http://for-net.ru/view_post.php?id=97

Just add an CSS property to apply on all elements of your site

* {
   cursor: pointer;
}

I’ll recommend using CSS rather than javascript or jquery. (Less resource hungry). Also consider using SVG. It’s small, and can be easily re-sized without any quality loss.

Some examples: _http://www.w3schools.com/cssref/pr_class_cursor.asp_