http://www.w3schools.com/CSS/pr_class_cursor.asp
http://www.tutorio.com/tutorial/css-custom-cursors
http://www.echoecho.com/csscursors.htm
if you want to change cursor in your blog, you can just add these to the internal CSS.
Honeytech Blog give-and-take community
http://www.w3schools.com/CSS/pr_class_cursor.asp
http://www.tutorio.com/tutorial/css-custom-cursors
http://www.echoecho.com/csscursors.htm
if you want to change cursor in your blog, you can just add these to the internal CSS.
You can add any of the following characteristic in your css
cursor:auto;
cursor: crosshair;
cursor: help;
cursor: pointer;
cursor: n-resize;
cursor: text;
cursor: inherit;
cursor: default;
cursor: move;
cursor: e-resize;
cursor: wait;
cursor: w-resize;
cursor: s-resize;
Forget to add the correct style.
Example:
body{
cursor:auto;
}
You must log in to post.