do u mean u want different cursors?
Custom Mouse Cursor "Previous"
and "Next" in lay options -> lightbox addon
so basically if u want to set a custom cursor for any element use this css. in lay options -> custom css & html
.yourtarget{
cursor: url(cursor_1.svg) 4 5;
}
4 and 5 are the x and y values for where the cursor clicks when u click.
url theres the url to the image. u can upload an image in the media library. then click on it there and find the url
the target ".yourtarget" is the html class.
right click an element you want to target in chrome,
click inspect. in the inspector, get the targets class:
for example here it would be "sidebar-inner"
Screenshot 2022-10-21 at 10.36.25.png
custom cursor for that would be
.sidebar-inner{
cursor: url(cursor_1.svg) 4 5;
}
https://developer.mozilla.org/en-US/docs/Web/CSS/cursor