Page 1 of 1

change mouse cursor

Posted: Mon Jun 01, 2015 10:20 am
by Asmaa AlHammadi

How could I change the style of the mouse cursor to pointer?
for example, when I put the mouse over a button, its style change to pointer
how can I do that for other items? like for pictures

Asmaa,


change mouse cursor

Posted: Mon Jun 01, 2015 12:04 pm
by Alena Prykhodko

Hello,

Not sure I understand question fully.
Please clarify do you mean cursor in editor itself or in HTML5 mobile app?


change mouse cursor

Posted: Mon Jun 01, 2015 12:46 pm
by Asmaa AlHammadi

I mean like how can I change the arrow style?
for example, when I put the arrow on the button, before I click on it, the arrow change , it shows the user that you have to click on it


change mouse cursor

Posted: Wed Jun 03, 2015 9:48 am
by Cat

Hello, I am having a similar problem. I have an image, but am using it like a button and would like the cursor to change to the link-"hand" cursor on hover to indicate to the user that it is clickable. I have tried this css (and adding "myLink" to class of image):

.myLink {
cursor:pointer;
}

But it is not working (or I'm not using it properly, not sure)

Any suggestions?


change mouse cursor

Posted: Wed Jun 03, 2015 10:08 am
by Evgene Karachevtsev

Hello

@Asmaa,
The style of the mouse cursor can be changed via css as it is shown in Cat's comment. codecursor: pointer; /code

@Cat,
I just tried it, and it works correctly. Could you please check maybe you use some other css rules that that override this one? You may try to add a "weight" to this rule adding code!important/code to it.


change mouse cursor

Posted: Wed Jun 03, 2015 12:05 pm
by Cat

Thank you Evgene,

I will have a look again, it probably is some css override.


change mouse cursor

Posted: Wed Jun 03, 2015 1:53 pm
by Asmaa AlHammadi

thank you

Image
but it appears like that


change mouse cursor

Posted: Wed Jun 03, 2015 1:55 pm
by Evgene Karachevtsev

Asmaa,

Could you please clarify where do you insert this code? It should be in a CSS asset.


change mouse cursor

Posted: Wed Jun 03, 2015 7:35 pm
by Asmaa AlHammadi

Now it works with me :D
thank you so much