You are the second person who reported this bug. I haven’t solved it yet. The problem is that the bug is in the Lightbox code, so I have to report it to the developer of the lightbox or fix it myself. This gonna take a while, because I’m not shure yet what exactly couses the bug.
You can help by reporting all the plugins you have currently activated. That would be great!
Thanx in advance
I’ve created a ticket (#2014).
Thanks for the response.
Activated plugins:
Akismet
BackUpWordPress
Easy Photo Album
G’luck!
i solved this by adding max-width: inherit; into .lightbox .lb-image in easy-photo-album/css/lightbox.css and easy-photo-album/css/lightbox.min.css
the coding will looks like this
in easy-photo-album/css/lightbox.css
/* line 28, ../sass/lightbox.sass */
.lightbox .lb-image {
display: block;
max-width: inherit;
height: auto;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
easy-photo-album/css/lightbox.min.css
lightbox .lb-image{display:block;max-width: inherit;height:auto;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;}
Thank you very much for your solution. Somebody commented the same solution this week at the github.com repository of the lightbox. That solution only used max-width: none;, witch I think is a better solution. Would you like to try it out? Download now the development version. (note, the development version can be unstable, so use with care 😉 )