View Full Version : modded cursors ...
p@nDa
01-02-2011, 07:09 PM
hi all , i found the code for edit cursor , and after some test and test i finally got worked different cursor for different action ...
/* ***** modded cursor ***** */
table, tr, td, div {cursor: url(images/panda01a.cur), default;}
a:hover {cursor: url(images/panda01b.cur), default;}
textarea, text, input {cursor: url(images/panda05.cur), default;}
this the code i'm using
all works right , the only one i can't modifiy is the one when u go over text ( example in this post if u go from empty space (arrow) to text written ) , it gives default cursor | for select text , and i cannot set mine cause i can't understand which voice rappresent that area ... shouldnt' be textarea ?
Digital Jedi
01-02-2011, 07:34 PM
That element only affects the input area on a form field. I believe for the "I-beam" you need to set the values for cursor: text.
p@nDa
01-02-2011, 09:44 PM
i already have inserted that itam 'text' in my samle posted above .
if not right in that point , where i should insert it ? in body ?
Digital Jedi
01-03-2011, 09:22 AM
i already have inserted that itam 'text' in my samle posted above .
if not right in that point , where i should insert it ? in body ?
Like I said, text are your form fields, the places where users input text on your forum. That's why it's grouped with textarea and input.
However, I see cursor:text is what you would add if you want to change it to the I-beam. It doesn't change the I-beam where it usually appears.
I've seen it working globally on some sites, but they have added it to the CSS body class and commented it out.
<!--
body{
cursor:url("greensmiley.cur");
}
-->
p@nDa
01-03-2011, 06:54 PM
i should add it ...
textarea, cursor:text, text, input {cursor: url(images/panda05.cur), default;}
in this way u mean ?
Digital Jedi
01-03-2011, 11:58 PM
i should add it ...
textarea, cursor:text, text, input {cursor: url(images/panda05.cur), default;}
in this way u mean ?
No, I mean you should forget I mentioned cursor:text altogether. In fact, just forget the word text. None of that is going to help you achieve what you want.
If you want to include the custom cursor image in place of the I-beam, you have to use the CSS I posted in my previous post. Unfortunately, I know of know other way to make it work.
p@nDa
01-06-2011, 12:51 PM
i understand what u say , but in that way the cursor is the same for i-beam and all others element , i mean use :
1 custom cursor ARROW ( for default )
1 custom cursor HAND ( for link )
1 custom cursor I-BEAM ( for text )
i can make work for the first 2 cursors , but dunno how to add the 3rd ...
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.