wintermute42

Results 2 comments of wintermute42

In my experience, setting dimensions to max actually works pretty well: ``` LightboxProvider.calculateImageDimensionLimits = function (dimensions) { return { 'maxWidth': dimensions.windowWidth, 'maxHeight': dimensions.windowHeight }; }; LightboxProvider.calculateModalDimensions = function (dimensions) {...

I had the same problem. Now I center the image with CSS like this: ``` .modal-full { margin: auto; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) !important; }...