Hi, I'm trying to use custom images to replace browsers default cursors for not just the default body cursor, but pointer, move, text, etc.
Don't worry I know graphic design so I'll use good designs and it won't be annoying but for now I just used some cursor image I found off the web, and here it is on my phpbb:
If you roll your mouse over a button or text field, the custom blue cursor (ugly) reverts back to the default, how do I make that not happen, and instead change to a different custom cursor IMAGE, not one built in?
http://waitalk.0sites.net/phpBB3/viewtopic.php?f=2&t=1
this is the code I'm using in my overall header, that's working for the body cursor but not anything else it seems
Code:
<style type="text/css">
body {cursor: url("http://www.waitalk.0sites.net/phpBB3/styles/waitalk/theme/cursors/cursor_blue.cur"), default;}
a {cursor: url("http://www.waitalk.0sites.net/phpBB3/styles/waitalk/theme/cursors/cursor_blue.cur"), pointer;}
li {cursor: url("http://www.waitalk.0sites.net/phpBB3/styles/waitalk/theme/cursors/cursor_blue.cur"), crosshair;}
p {cursor: url("http://www.waitalk.0sites.net/phpBB3/styles/waitalk/theme/cursors/cursor_blue.cur"), text;}
.class1 {cursor: url("http://www.waitalk.0sites.net/phpBB3/styles/waitalk/theme/cursors/cursor_blue.cur"), move;}
</style>
thanks I hope some genius will help me
|