dbrekalo/simpleLightbox

Problem displaying long captions

Opened this issue · 3 comments

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?

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;
}

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.

also try to reduce font size.

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