dbrekalo / simpleLightbox

SimpleLightbox is lightweight and responsive lightbox library with no dependencies. Display images, galleries, videos or custom content and control your lightbox with easy to use api.
http://dbrekalo.github.io/simpleLightbox/
MIT License
263 stars 76 forks source link

Problem displaying long captions #19

Open austona opened 4 years ago

austona commented 4 years ago

Most of the captions I use are longer, as they describe the image. Currently, the captions are just cut off. Is there a way to display longer captions?

vikkic23 commented 3 years ago

I just had this issue too. I'm sure you've already solved it by now but in case anyone else needs it, I changed the white space to get the text to wrap.

.slbCaption { white-space: normal; }

austona commented 3 years ago

Hey vikkic23,

thank you for your help. Unfortunately, this doesn't really solve my problem, because when I apply white-space: normal; the caption covers the image.

rexarvind commented 3 years ago

also try to reduce font size.

.slbCaption {
    font-size: 1rem;
    white-space: normal;
}