Lightbox Squashed Images

I am currently having a problem with Lightbox 2. All scripts and CSS are installed correctly, and I did not modify or add code to css and scripts.

I always get the result below every time, and I cannot fix it. Any ideas on why this is happening?

squashed picture

+6
source share
1 answer

I had the same problem. Fortunately, the solution is very simple:

In lightbox.css, add the following line to .lightbox.lb-image :

max-width: inherit;

This should solve your problem. I found the answer at https://github.com/lokesh/lightbox2/issues/69

+10
source

Source: https://habr.com/ru/post/950264/


All Articles