change mouse cursor
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,
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
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,
Hello,
Not sure I understand question fully.
Please clarify do you mean cursor in editor itself or in HTML5 mobile app?
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
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?
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.
Thank you Evgene,
I will have a look again, it probably is some css override.
Asmaa,
Could you please clarify where do you insert this code? It should be in a CSS asset.
Now it works with me
thank you so much