Problem displaying long captions
Opened this issue · 3 comments
austona commented
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
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
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.
rexwebmedia commented
also try to reduce font size.
.slbCaption {
font-size: 1rem;
white-space: normal;
}