My problem is the font-size of the title is too small on phone. I see in your CSS it’s hard-coded to be 14px. I tried changing to ems and percent hoping the phone would render better, but no such luck.
I am using a non-responsive theme (a child of toolbox).
I have an almost-good solution (without rewriting a lot of css to be responsive which I can’t do at this juncture) so I thought I’d share in case anyone else is struggling with this. (and no, not tested on many devices…just my own phone)
@media only screen and (max-width: 320px) {
.nivo-lightbox-theme-default .nivo-lightbox-title { font-size: 2em!important; }
}