Reputation: 13
I am new to css and jquery, so sorry for my stupid question and I'd appreciate any help! I liked this lightbox gallery https://kawshar.github.io/lightboxgallery/ to implement on my website. The only thing that I'd like to change is that the caption box goes under the image not on top of it (because it hides it) Thanks very much in advance! Elitsa
Upvotes: 1
Views: 336
Reputation: 6584
There's some magic CSS generated via the lightbox javascript, so this may cause issues, but simply setting this will pop it below:
.lightboxgallery-image-content {
position: static;
}
This is because currently it's set to position: absolute;
on top of the image.
Upvotes: 1