Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Is it possible to change the cursor(arrow mark) to hand image?
Solved! Go to Solution.
Collection widgets allow you display multiple base mashups.
Assign a name to CustomClass property to the base mashup.
Write below custom css code in base mashup.
.ReplaceMeWithActualCustomClassName {
cursor: grab;
}
Cursor changes are usually associated with Hover and Click, you should be able to do that in CSS
We have 700 entities. In which mashup (or) where i have to use css code for hover and click functionality of user?? And What is the css code for that??
You can use below css in mashups or masters to change the cursor to hand image when mouse not hovering on any widgets.
body {
cursor: grab;
}
To change the mouse over style on widgets, you'll need to use custom css to target each element and change the cursor style which might not be feasible for some elements.
Do you have css to change the cursor to hand image when mouse hovering on collection widgets. @TonyZhang
Hi @AP_9587236,
If you feel your question has been answered, please mark the appropriate response as the Accepted Solution for the benefit of others with the same question.
Regards,
Tony
Collection widgets allow you display multiple base mashups.
Assign a name to CustomClass property to the base mashup.
Write below custom css code in base mashup.
.ReplaceMeWithActualCustomClassName {
cursor: grab;
}
I followed this procedure with this css. It is working fine. Thanks.
.pointer {
cursor: pointer;
}
I unfortunately do not know CSS, ThingWorx supports a 'master' css theme so that's probably where I would put it.