hey there!
in lay options → lightbox addon the setting "Minimum Space below Image for Captions (only applies if image has caption)" was set to "10"
The description for this setting is misleading. I will update this.
This setting cut off the caption, cause 10 is too small. I set it to 50.
Thats not the minimum space, its just the space available to captions in a lightbox.
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"
[image: 1666341407991-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